Hello-world/.woodpecker.yml

37 lines
628 B
YAML
Raw Normal View History

2022-01-19 02:45:33 +00:00
pipeline:
2022-01-21 01:35:07 +00:00
test0:
image: bash
2022-01-19 02:45:33 +00:00
commands:
2022-01-19 22:42:24 +00:00
- git status
2022-01-21 01:35:07 +00:00
test1:
image: bash
2022-01-19 02:45:33 +00:00
commands:
- pwd
- w
2022-01-20 02:28:43 +00:00
- neofetch
2022-01-21 01:48:41 +00:00
- echo $HOME
2022-01-20 02:36:44 +00:00
- if [ $PASSWORD = "helloworld" ]; then echo "YAY"; fi
secrets: [ password ]
2022-01-21 01:35:07 +00:00
test2:
image: sh
commands:
- pwd
- w
- neofetch
2022-01-21 02:11:46 +00:00
- echo $HOME
test3:
image: fish
commands:
- echo test > test
- echo test2 >> test
- echo (cat test)
- python -c "import this"
- set test a
2022-01-23 00:10:34 +00:00
- echo $test
test4:
image: zsh
commands:
2022-01-23 00:11:26 +00:00
- echo Hello world!
2022-01-23 00:10:34 +00:00
- echo $SHELL
- pwd