2024-10-07 13:14:11 +02:00
|
|
|
skip_clone: true
|
2024-08-07 21:36:57 +02:00
|
|
|
steps:
|
|
|
|
- name: test (prod)
|
|
|
|
image: git.ar21.de/yolokube/dashboard:${CI_PIPELINE_NUMBER}
|
|
|
|
commands:
|
|
|
|
- nginx
|
|
|
|
- curl -fsS -m 10 --retry 5 -o /dev/null http://localhost:8080
|
|
|
|
when:
|
|
|
|
- branch: master
|
|
|
|
event: push
|
|
|
|
- name: test (staging)
|
|
|
|
image: git.ar21.de/yolokube/dashboard:staging-${CI_PIPELINE_NUMBER}
|
|
|
|
commands:
|
|
|
|
- nginx
|
|
|
|
- curl -fsS -m 10 --retry 5 -o /dev/null http://localhost:8080
|
|
|
|
when:
|
|
|
|
- branch:
|
|
|
|
exclude: master
|
|
|
|
event: push
|
|
|
|
depends_on:
|
2024-10-07 13:14:11 +02:00
|
|
|
- build
|