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:
- name: eowyn
- name: test-pr
image: ziglings/ziglang:latest
pull: true
commands:
- sh ./patches/eowyn.sh
when:
event: [pull_request, push, cron]
ref:
- refs/pull/**
- refs/heads/main
event: [pull_request]
- name: test-merge
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*