GitLab CICD Day 06 - 執行外部檔案
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GitLab CICD Day 06 - 執行外部檔案相关的知识,希望对你有一定的参考价值。
- 新建run.sh(同级目录)
echo "hello world from external file"
2。 编写.gitlab-ci.yml
stages:
- testing # stage编排
- build
- deploy
run_test: #Job
stage: testing
tags:
- shell #Gitlab-runner
script:
- echo "执行测试"
- chmod +x ./run.sh # 给run.sh加可执行权限
- ./run.sh # 运行外部文件./run.sh
- 运行结果:
以上是关于GitLab CICD Day 06 - 執行外部檔案的主要内容,如果未能解决你的问题,请参考以下文章
GitLab CICD Day 10 - Runner 与 Executor
GitLab CICD Day 13 - Group Runner