FOERBICO/.woodpecker/woodpecker-workflow-test.yaml

24 lines
608 B
YAML
Raw Normal View History

2024-09-02 13:44:35 +00:00
# https://woodpecker-ci.org/docs/usage/intro
2024-09-02 13:38:51 +00:00
when:
- event: push
branch: feature/working-forgejo-actions
#gehen wildcards fuer branch filtering?
steps:
- name: build
#image: debian # alpine // docker pull docker.io/library/alpine
2024-09-02 13:44:35 +00:00
image: ubuntu:22.04
2024-09-02 13:38:51 +00:00
commands:
- echo "This is the build step"
2024-09-02 13:44:35 +00:00
#wie kann man Bash Shebang nutzen?
2024-09-02 13:38:51 +00:00
- cat << EOF > simple-shell-test.sh
echo 'ich bin keine Katze'
cat 'und auch kein Hund'
ls -la /
EOF
#chmod u+x executable
- name: a-test-step
image: alpine #golang:1.16
commands:
- echo "Testing ..."
2024-09-02 13:44:35 +00:00
- /bin/bash ./executable