fix triggers
This commit is contained in:
parent
2e0f38b48f
commit
4bd6638b39
3 changed files with 15 additions and 15 deletions
|
|
@ -45,7 +45,7 @@ steps:
|
||||||
memory: 800Mi
|
memory: 800Mi
|
||||||
cpu: 1000m
|
cpu: 1000m
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
kubernetes.io/arch: "${ARCH}"
|
kubernetes.io/arch: '${ARCH}'
|
||||||
|
|
||||||
- name: 'ntfy'
|
- name: 'ntfy'
|
||||||
image: codeberg.org/l-x/woodpecker-ntfy:1.3.1
|
image: codeberg.org/l-x/woodpecker-ntfy:1.3.1
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
when:
|
when:
|
||||||
- event: cron
|
event: [manual]
|
||||||
cron: images
|
|
||||||
|
|
||||||
skip_clone: true
|
skip_clone: true
|
||||||
|
|
||||||
|
|
@ -48,9 +47,9 @@ steps:
|
||||||
memory: 30Gi
|
memory: 30Gi
|
||||||
cpu: 4000m
|
cpu: 4000m
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
kubernetes.io/arch: "${ARCH}"
|
kubernetes.io/arch: '${ARCH}'
|
||||||
tolerations:
|
tolerations:
|
||||||
- key: "CI"
|
- key: 'CI'
|
||||||
operator: "Equal"
|
operator: 'Equal'
|
||||||
value: "true"
|
value: 'true'
|
||||||
effect: "NoSchedule"
|
effect: 'NoSchedule'
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
when:
|
when:
|
||||||
event: [manual]
|
- event: cron
|
||||||
|
cron: images
|
||||||
|
|
||||||
skip_clone: true
|
skip_clone: true
|
||||||
|
|
||||||
|
|
@ -17,7 +18,7 @@ matrix:
|
||||||
ARCH: arm64
|
ARCH: arm64
|
||||||
- PLATFORM: alpine-320
|
- PLATFORM: alpine-320
|
||||||
ARCH: amd64
|
ARCH: amd64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: 'Warming up'
|
- name: 'Warming up'
|
||||||
image: busybox:latest
|
image: busybox:latest
|
||||||
|
|
@ -36,9 +37,9 @@ steps:
|
||||||
memory: 800Mi
|
memory: 800Mi
|
||||||
cpu: 1000m
|
cpu: 1000m
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
kubernetes.io/arch: "${ARCH}"
|
kubernetes.io/arch: '${ARCH}'
|
||||||
tolerations:
|
tolerations:
|
||||||
- key: "CI"
|
- key: 'CI'
|
||||||
operator: "Equal"
|
operator: 'Equal'
|
||||||
value: "true"
|
value: 'true'
|
||||||
effect: "NoSchedule"
|
effect: 'NoSchedule'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue