initial commit
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

This commit is contained in:
Aaron Riedel 2024-11-05 21:07:30 +01:00
commit 69a2511237
Signed by: aaron
GPG key ID: 643004654D40D577
6 changed files with 181 additions and 0 deletions

22
.woodpecker/.test.yaml Normal file
View file

@ -0,0 +1,22 @@
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