加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.gitlab-ci.yml 373 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhuzhengyi001 提交于 2021-08-17 19:05 . update gitlab-ci
before_script:
- cd $CI_PROJECT_DIR
stages:
- build
- unit_test
- ltptest
build:
stage: build
tags:
- cfs
script:
- docker/run_docker.sh -b
unit_test:
stage: unit_test
tags:
- cfs
script:
- docker/run_docker.sh -t
ltptest:
stage: ltptest
tags:
- cfs
script:
- rm -rf docker/docker_data/*
- docker/run_docker.sh -l
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化