Hello-world/.woodpecker.yml

33 lines
507 B
YAML
Raw Normal View History

2022-09-25 21:41:30 +00:00
pipeline:
2022-01-21 01:35:07 +00:00
test1:
image: bash
2022-01-19 02:45:33 +00:00
commands:
- pwd
- w
2022-09-25 21:05:12 +00:00
- whoami
2022-01-21 01:48:41 +00:00
- echo $HOME
2022-09-25 21:46:08 +00:00
- env
2022-01-21 01:35:07 +00:00
test2:
image: sh
commands:
- pwd
- w
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-09-25 22:31:30 +00:00
- echo Hello world!
2022-01-23 00:10:34 +00:00
- echo $SHELL
- pwd
2022-09-25 22:07:25 +00:00
- env
2022-09-25 22:10:46 +00:00
- git status