1 Star 0 Fork 1

CHRIS / fluent-bit

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.gitlab-ci.yml 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
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 .
C
1
https://gitee.com/gouyongchao/fluent-bit.git
git@gitee.com:gouyongchao/fluent-bit.git
gouyongchao
fluent-bit
fluent-bit
master

搜索帮助