build-cran-binaries/.woodpecker/warm_up_images.yaml
2024-09-07 22:39:36 +02:00

44 lines
886 B
YAML

when:
event: [manual]
skip_clone: true
matrix:
include:
- PLATFORM: redhat-9
ARCH: arm64
- PLATFORM: redhat-8
ARCH: arm64
- PLATFORM: ubuntu-2404
ARCH: arm64
- PLATFORM: ubuntu-2204
ARCH: arm64
- PLATFORM: alpine-320
ARCH: arm64
- PLATFORM: alpine-320
ARCH: amd64
steps:
- name: 'Warming up'
image: busybox:latest
failure: ignore
commands:
- sleep 300
- echo "Warmed Up"
backend_options:
kubernetes:
### PROD-sequential
resources:
requests:
memory: 500Mi
cpu: 1000m
limits:
memory: 800Mi
cpu: 1000m
nodeSelector:
kubernetes.io/arch: "${ARCH}"
tolerations:
- key: "CI"
operator: "Equal"
value: "true"
effect: "NoSchedule"