2019-10-05 【Gitlab】创建 pipeline
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2019-10-05 【Gitlab】创建 pipeline相关的知识,希望对你有一定的参考价值。
参考技术A .gitlab-ci.yml 文件内容如下(使用默认的 docker image,执行build website 步骤)使用 image 指定要使用image;使用 artifacts 保留创建的中间文件
添加 test 步骤; 使用 stages 指定要指定的stage先后顺序
添加并行任务
添加部署步骤
添加 environment
在 project / Operations / Environment 链接下面,可以找到不同环境的部署历史
在"deploy review" 绑定创建和删除任务
stages:
- build
- test
- deploy review
- deploy staging
- deploy production
- production tests
两个方法:
比如:
使用 when 条件; allow_failure 是否运行当前失败,其后的任务继续执行
使用 only 条件
所有任务,或者某个任务在所有任务执行前后要做的动作
before_script:
- echo "this step will be done before runing the script section
参考文档
以上是关于2019-10-05 【Gitlab】创建 pipeline的主要内容,如果未能解决你的问题,请参考以下文章
无法在 Gitlab CI 中使用 pip3 安装 python3 PyQt5 模块
TensorFlow ImportError: (‘Failed to import pydot. You must `pip install pydot`)