37 lines
626 B
YAML
37 lines
626 B
YAML
version: 2
|
|
name: create_test_zt
|
|
description: ""
|
|
global:
|
|
concurrent: 1
|
|
workflow:
|
|
- ref: start
|
|
name: 开始
|
|
task: start
|
|
- ref: end
|
|
name: 结束
|
|
task: end
|
|
needs:
|
|
- shell_2
|
|
- 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/ubuntu:22.04
|
|
script:
|
|
- date -R
|
|
needs:
|
|
- shell_0
|
|
- ref: shell_2
|
|
name: shell
|
|
image: docker.jianmuhub.com/library/debian:buster-slim
|
|
script:
|
|
- whoami
|
|
needs:
|
|
- shell_1
|
|
|