Skip to content
Snippets Groups Projects
Commit d6d4ab61 authored by Tim Jaacks's avatar Tim Jaacks
Browse files

Fix ci-test SDK download

Since the implementation of multiple child pipelines we cannot use the
previous artifacts download links anymore specifying tag and job name,
because the jobs for image build and SDK build are equal. Use direct
download links instead via job number.
parent bc85e805
No related branches found
No related tags found
1 merge request!351Fix ci-test SDK download
Pipeline #86918 passed with stage
in 3 minutes and 5 seconds
......@@ -74,7 +74,7 @@ build-{{ machine }}:
# We have to specify a tag here instead of getting the artifacts from a master
# branch, because we don't always execute the full pipeline on the master branches.
# In those cases the actual build job does not exist, which results in a 404 error.
BUILD_ARTIFACTS: ${BUILD_ARTIFACTS_PREFIX}-{{ machine }}
BUILD_ARTIFACTS: ${BUILD_ARTIFACTS_{{ machine | replace("-", "_") }}}
after_script:
# FIXME: This is necessary because we're using an old build for the build simulation
# which does not export these variables, yet. Can be removed as soon as we switch to
......
......@@ -62,8 +62,10 @@ yocto-simulation-pipeline:
- .build-pipeline
- .yocto-deploy
variables:
BUILD_ARTIFACTS_PREFIX: >-
https://git.seco.com/seco-ne/yocto/manifest/-/jobs/artifacts/kirkstone/14.0/download?job=build
BUILD_ARTIFACTS_seco_mx6: >-
https://git.seco.com/seco-ne/yocto/manifest/-/jobs/507268/artifacts/download
BUILD_ARTIFACTS_seco_mx8mm: >-
https://git.seco.com/seco-ne/yocto/manifest/-/jobs/507272/artifacts/download
YOCTO_IMAGE: seconorth-image
YOCTO_DISTRO: seconorth-wayland
SETUP_SCRIPT: /dev/null
......@@ -85,8 +87,10 @@ sdk-simulation-pipeline:
- .build-pipeline
- .yocto-deploy
variables:
BUILD_ARTIFACTS_PREFIX: >-
https://git.seco.com/seco-ne/yocto/manifest/-/jobs/artifacts/kirkstone/14.0/download?job=buildsdk
BUILD_ARTIFACTS_seco_mx6: >-
https://git.seco.com/seco-ne/yocto/manifest/-/jobs/507274/artifacts/download
BUILD_ARTIFACTS_seco_mx8mm: >-
https://git.seco.com/seco-ne/yocto/manifest/-/jobs/507280/artifacts/download
YOCTO_IMAGE: seconorth-image
YOCTO_DISTRO: seconorth-wayland
SETUP_SCRIPT: /dev/null
......
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