mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-12 12:35:08 +00:00
27 lines
519 B
YAML
27 lines
519 B
YAML
|
|
name: project1
|
|
|
|
scm:
|
|
type: mercurial
|
|
repository: ./test/repos/mercurial
|
|
rev: default
|
|
|
|
steps:
|
|
- type: shell
|
|
cmd: >
|
|
echo "long multiline string" &&
|
|
sleep 2 &&
|
|
echo "is not a problem when you're using yaml" &&
|
|
echo "cur dir is `pwd`"
|
|
- type: shell
|
|
name: sleep
|
|
cmd: sleep 4
|
|
- type: shell
|
|
cmd: echo 1 > 1.txt
|
|
- type: shell
|
|
cmd: sleep 4
|
|
- type: shell
|
|
cmd: echo 2 > 2.txt
|
|
- type: shell
|
|
cmd: cat 1.txt 2.txt
|