Skip to content
Snippets Groups Projects
Commit f6baa4fc authored by Julian Brost's avatar Julian Brost :unicorn:
Browse files

Fix GitLab CI dependencies

Test jobs must depend on the corresponding build jobs so the correct build
artifacts are downloaded. Otherwise, the test job will not even have access to
the built packages and install icinga2 from packages.icinga.com.
parent 194b5763
No related branches found
No related tags found
1 merge request!20Fix GitLab CI dependencies
Pipeline #21891 passed
...@@ -84,7 +84,7 @@ test/debian/bullseye:x86_64: ...@@ -84,7 +84,7 @@ test/debian/bullseye:x86_64:
variables: variables:
DOCKER_IMAGE: debian/bullseye DOCKER_IMAGE: debian/bullseye
dependencies: dependencies:
- debian/bullseye - debian/bullseye:x86_64
debian/bullseye:x86: debian/bullseye:x86:
<<: *binary <<: *binary
...@@ -126,7 +126,7 @@ test/debian/buster:x86_64: ...@@ -126,7 +126,7 @@ test/debian/buster:x86_64:
variables: variables:
DOCKER_IMAGE: debian/buster DOCKER_IMAGE: debian/buster
dependencies: dependencies:
- debian/buster - debian/buster:x86_64
debian/buster:x86: debian/buster:x86:
<<: *binary <<: *binary
...@@ -168,7 +168,7 @@ test/debian/stretch:x86_64: ...@@ -168,7 +168,7 @@ test/debian/stretch:x86_64:
variables: variables:
DOCKER_IMAGE: debian/stretch DOCKER_IMAGE: debian/stretch
dependencies: dependencies:
- debian/stretch - debian/stretch:x86_64
debian/stretch:x86: debian/stretch:x86:
<<: *binary <<: *binary
...@@ -214,7 +214,7 @@ test/ubuntu/impish:x86_64: ...@@ -214,7 +214,7 @@ test/ubuntu/impish:x86_64:
variables: variables:
DOCKER_IMAGE: ubuntu/impish DOCKER_IMAGE: ubuntu/impish
dependencies: dependencies:
- ubuntu/impish - ubuntu/impish:x86_64
upload/ubuntu/impish: upload/ubuntu/impish:
<<: *upload <<: *upload
...@@ -240,7 +240,7 @@ test/ubuntu/hirsute:x86_64: ...@@ -240,7 +240,7 @@ test/ubuntu/hirsute:x86_64:
variables: variables:
DOCKER_IMAGE: ubuntu/hirsute DOCKER_IMAGE: ubuntu/hirsute
dependencies: dependencies:
- ubuntu/hirsute - ubuntu/hirsute:x86_64
upload/ubuntu/hirsute: upload/ubuntu/hirsute:
<<: *upload <<: *upload
...@@ -265,7 +265,7 @@ test/ubuntu/focal:x86_64: ...@@ -265,7 +265,7 @@ test/ubuntu/focal:x86_64:
variables: variables:
DOCKER_IMAGE: ubuntu/focal DOCKER_IMAGE: ubuntu/focal
dependencies: dependencies:
- ubuntu/focal - ubuntu/focal:x86_64
upload/ubuntu/focal: upload/ubuntu/focal:
<<: *upload <<: *upload
...@@ -291,7 +291,7 @@ test/ubuntu/bionic:x86_64: ...@@ -291,7 +291,7 @@ test/ubuntu/bionic:x86_64:
variables: variables:
DOCKER_IMAGE: ubuntu/bionic DOCKER_IMAGE: ubuntu/bionic
dependencies: dependencies:
- ubuntu/bionic - ubuntu/bionic:x86_64
ubuntu/bionic:x86: ubuntu/bionic:x86:
<<: *binary <<: *binary
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment