summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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