1 Star 0 Fork 1

kenzzuli/open-adventure

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.gitlab-ci.yml 1.70 KB
一键复制 编辑 原始数据 按行查看 历史
image: opensuse/tumbleweed
stages:
- build
- test
- deploy
# build advent itself
binary:debug:
stage: build
before_script:
- zypper install -y make gcc libedit-devel libasan5 libubsan1 python python2-PyYAML lcov
script:
- make debug
artifacts:
paths:
- advent
- cheat
- "*.o"
- dungeon.c
- dungeon.h
binary:release:
stage: build
before_script:
- zypper install -y make gcc libedit-devel python python2-PyYAML
script:
- make advent cheat
artifacts:
paths:
- advent
- cheat
- "*.o"
- dungeon.c
- dungeon.h
manpage:
stage: build
before_script:
- zypper install -y make asciidoc
script:
- make advent.6
artifacts:
paths:
- advent.6
html:
stage: build
before_script:
- zypper install -y make asciidoc libxslt
script:
- make html
artifacts:
paths:
- "*.html"
dist:
stage: build
before_script:
- zypper install -y make asciidoc tar gzip
script:
- export VERS=${CI_COMMIT_REF_NAME}
- make dist -e
artifacts:
paths:
- "*.tar.gz"
# run tests using the binary built before
test:debug:
stage: test
before_script:
- zypper install -y make gcc libedit-devel libasan5 libubsan1 python python2-PyYAML lcov
script:
- make coverage
artifacts:
paths:
- coverage
dependencies:
- binary:debug
test:release:
stage: test
before_script:
- zypper install -y make libedit
script:
- cd tests
- make
- cd ..
dependencies:
- binary:release
pages:
stage: deploy
script:
- mkdir public
- mv coverage public
artifacts:
paths:
- public
only:
- master
dependencies:
- test:debug
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/kenzzuli/open-adventure.git
git@gitee.com:kenzzuli/open-adventure.git
kenzzuli
open-adventure
open-adventure
master

搜索帮助