summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchrboesch <chrboesch@noreply.codeberg.org>2025-09-24 23:18:49 +0200
committerchrboesch <chrboesch@noreply.codeberg.org>2025-09-24 23:18:49 +0200
commitb27a6a4d1f78e472f9104c1e21d87ba2ddc9437f (patch)
treee2aaf35eb7ba424be5e107fd766cf81186d23973
parente4a7db17b3d1fb9d52bfe051a1bcf35c2077e843 (diff)
Update .woodpecker/eowyn.yaml
separate steps
-rw-r--r--.woodpecker/eowyn.yaml24
1 files changed, 19 insertions, 5 deletions
diff --git a/.woodpecker/eowyn.yaml b/.woodpecker/eowyn.yaml
index 9b2a4b7..b84c3e8 100644
--- a/.woodpecker/eowyn.yaml
+++ b/.woodpecker/eowyn.yaml
@@ -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* \ No newline at end of file