forked from ci4s/pipeline-convert
24 lines
376 B
YAML
24 lines
376 B
YAML
version: 2
|
|
name: 未命名项目
|
|
description: ""
|
|
global:
|
|
concurrent: 1
|
|
workflow:
|
|
- ref: start
|
|
name: 开始
|
|
task: start
|
|
- ref: end
|
|
name: 结束
|
|
task: end
|
|
needs:
|
|
- shell_0
|
|
- ref: shell_0
|
|
name: shell
|
|
image: docker.jianmuhub.com/library/alpine:3.17.0
|
|
script:
|
|
- "#!/bin/bash"
|
|
- echo "hello world"
|
|
needs:
|
|
- start
|
|
|