Add .gitlab-ci.yml
Showing
1 changed file
with
11 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
-
Please register or sign in to post a comment
# 定义的任务1 | ||
job1: | ||
# 场景为构建 | ||
stage: build | ||
# 所需执行的脚本 | ||
script: | ||
- execute-script-for-job1 | ||
# 在哪个分支上可用 | ||
only: | ||
- master | ||