openproject/.woodpecker/.test.yaml
Aaron Riedel 69a2511237
All checks were successful
ci/woodpecker/manual/lint Pipeline was successful
ci/woodpecker/manual/build Pipeline was successful
ci/woodpecker/manual/test Pipeline was successful
initial commit
2024-11-05 21:07:30 +01:00

22 lines
425 B
YAML

skip_clone: true
labels:
backend: docker
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
image: git.ar21.de/${CI_REPO}:testing-${CI_PIPELINE_NUMBER}
commands:
- echo test
when:
- branch:
exclude: main
event: [push, manual]
depends_on:
- lint
- build