feat: .devops/未命名项目.yml

This commit is contained in:
jianmu 2023-11-29 17:04:40 +08:00
parent 99bf69e4e7
commit 7cb478c9e6
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
version: 2
name: 未命名项目
description: ""
global:
concurrent: 1
workflow:
- ref: start
name: 开始
task: start
- ref: shell_0
name: shell
image: docker.jianmuhub.com/library/alpine:3.17.0
script:
- date
needs:
- start
- ref: shell_1
name: shell
image: docker.jianmuhub.com/library/anolisos:8.6
script:
- whoami
needs:
- shell_0
- ref: end
name: 结束
task: end
needs:
- shell_1