openproject/.woodpecker/.test.yaml
Aaron Riedel 0ed7d7e8b9
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful
switch pipeline to kubernetes backend
2025-02-12 19:59:39 +01:00

22 lines
439 B
YAML

skip_clone: true
labels:
backend: kubernetes
steps:
- name: Test image (prod)
image: git.ar21.de/${CI_REPO}:${CI_PIPELINE_NUMBER}
commands:
- echo test
when:
- branch: main
event: [push, manual]
- name: Test image (testing)
image: git.ar21.de/${CI_REPO}:testing-${CI_PIPELINE_NUMBER}
commands:
- echo test
when:
- branch:
exclude: main
event: [push, manual]
depends_on:
- lint
- build