Update .woodpecker/eowyn.yaml

separate steps
This commit is contained in:
chrboesch 2025-09-24 23:18:49 +02:00
parent e4a7db17b3
commit b27a6a4d1f

View File

@ -1,12 +1,26 @@
steps: steps:
- name: eowyn - name: test-pr
image: ziglings/ziglang:latest image: ziglings/ziglang:latest
pull: true pull: true
commands: commands:
- sh ./patches/eowyn.sh - sh ./patches/eowyn.sh
when: when:
event: [pull_request, push, cron] event: [pull_request]
ref:
- refs/pull/** - name: test-merge
- refs/heads/main image: ziglings/ziglang:latest
pull: true
commands:
- sh ./patches/eowyn.sh
when:
event: [push]
branch: [main]
- name: nightly
image: ziglings/ziglang:latest
pull: true
commands:
- sh ./patches/eowyn.sh
when:
event: [cron]
cron: daily* cron: daily*