test_create_zt/.devops/未命名项目.yml

30 lines
485 B
YAML

version: 2
name: 未命名项目
description: ""
global:
concurrent: 1
workflow:
- ref: start
name: 开始
task: start
- ref: shell_0
name: shell
image: docker.jianmuhub.com/library/debian:buster-slim
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