forked from fluent/fluent-bit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from fluent/master
Sync master
- Loading branch information
Showing
4,609 changed files
with
681,048 additions
and
570,926 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!-- Provide summary of changes --> | ||
|
||
<!-- Issue number, if available. E.g. "Fixes #31", "Addresses #42, #77" --> | ||
|
||
---- | ||
Enter `[N/A]` in the box, if an item is not applicable to your change. | ||
|
||
**Testing** | ||
Before we can approve your change; please submit the following in a comment: | ||
- [ ] Example configuration file for the change | ||
- [ ] Debug log output from testing the change | ||
<!-- Invoke Fluent Bit and Valgrind as: $ valgrind ./bin/fluent-bit <args> --> | ||
- [ ] Attached [Valgrind](https://valgrind.org/docs/manual/quick-start.html) output that shows no leaks or memory corruption was found | ||
|
||
**Documentation** | ||
<!-- Docs can be edited at https://github.com/fluent/fluent-bit-docs --> | ||
- [ ] Documentation required for this feature | ||
|
||
<!-- Doc PR (not required but highly recommended) --> | ||
|
||
---- | ||
|
||
Fluent Bit is licensed under Apache 2.0, by submitting this pull request I understand that this code will be released under the terms of that license. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
include: | ||
- local: '/.gitlab/ci-templates.yml' | ||
|
||
stages: | ||
- build | ||
- docker-build | ||
|
||
"gcc DFLB_JEMALLOC=On": | ||
stage: build | ||
image: gcc | ||
variables: | ||
FLB_OPT: "-DFLB_JEMALLOC=On" | ||
extends: .gcc-template | ||
script: | ||
- sh ci/do-ut | ||
cache: | ||
key: "$CI_COMMIT_REF_SLUG" | ||
paths: | ||
- ./build | ||
|
||
"gcc DFLB_JEMALLOC=Off": | ||
stage: build | ||
image: gcc | ||
variables: | ||
FLB_OPT: "-DFLB_JEMALLOC=Off" | ||
extends: .gcc-template | ||
script: | ||
- sh ci/do-ut | ||
cache: | ||
key: "$CI_COMMIT_REF_SLUG" | ||
paths: | ||
- ./build | ||
|
||
"gcc DSANITIZE_ADDRESS=On": | ||
stage: build | ||
image: gcc | ||
variables: | ||
FLB_OPT: "-DSANITIZE_ADDRESS=On" | ||
extends: .gcc-template | ||
script: | ||
- sh ci/do-ut | ||
cache: | ||
key: "$CI_COMMIT_REF_SLUG" | ||
paths: | ||
- ./build | ||
|
||
"gcc DSANITIZE_UNDEFINED=On": | ||
stage: build | ||
image: gcc | ||
variables: | ||
FLB_OPT: "-DSANITIZE_UNDEFINED=On" | ||
extends: .gcc-template | ||
script: | ||
- sh ci/do-ut | ||
cache: | ||
key: "$CI_COMMIT_REF_SLUG" | ||
paths: | ||
- ./build | ||
|
||
"gcc DFLB_COVERAGE=On": | ||
stage: build | ||
image: gcc | ||
variables: | ||
FLB_OPT: "-DFLB_COVERAGE=On" | ||
extends: .gcc-template | ||
script: | ||
- sh ci/do-ut | ||
cache: | ||
key: "$CI_COMMIT_REF_SLUG" | ||
paths: | ||
- ./build | ||
|
||
docker-build: | ||
stage: docker-build | ||
image: docker:stable | ||
variables: | ||
DOCKER_BUILD: 1 | ||
services: | ||
- docker:dind | ||
before_script: | ||
- docker info | ||
cache: | ||
key: "$CI_COMMIT_REF_SLUG" | ||
paths: | ||
- ./build | ||
script: | ||
- echo "===== BUILD DOCKER IMAGE =======" | ||
- docker build -t test-image -f ./Dockerfile . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.gcc-template: | ||
before_script: | ||
- export CC=gcc | ||
- apt-get update -y | ||
- apt-get install cmake flex bison -y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.