summaryrefslogtreecommitdiff
path: root/.woodpecker/eowyn.yaml
blob: b84c3e8f3b5e5bcc89af92f71cd03469d4244d75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
steps:
  - name: test-pr
    image: ziglings/ziglang:latest
    pull: true
    commands:
      - sh ./patches/eowyn.sh
    when:
      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*