Skip to content
Snippets Groups Projects
Commit 4157de13 authored by Wouter Deconinck's avatar Wouter Deconinck Committed by Sylvester Joosten
Browse files

fix: allow jug_xl builds to start even if not all jug_dev finished yet

parent 72b76f67
No related branches found
No related tags found
1 merge request!740fix: allow jug_xl builds to start even if not all jug_dev finished yet
......@@ -272,21 +272,25 @@ jug_dev:
BASE_IMAGE: debian_stable_base
BUILD_IMAGE: jug_
PLATFORM: linux/amd64,linux/arm64/v8
ENV: [dev, prod]
ENV:
- dev
- prod
# - BUILD_TYPE:
# - default
# - nightly
# BASE_IMAGE: oneapi_base
# BUILD_IMAGE: oneapi_
# PLATFORM: linux/amd64
# ENV: [prod]
# ENV:
# - prod
# - BUILD_TYPE:
# - default
# - nightly
# BASE_IMAGE: cuda_base_new
# BUILD_IMAGE: cuda_
# PLATFORM: linux/amd64
# ENV: [prod]
# ENV:
# - prod
extends: .build
stage: jug
needs:
......@@ -357,7 +361,16 @@ jug_xl:default:
stage: jug
needs:
- version
- jug_dev
- job: jug_dev
parallel:
matrix:
- BUILD_TYPE:
- default
BASE_IMAGE: debian_stable_base
BUILD_IMAGE: jug_
PLATFORM: linux/amd64,linux/arm64/v8
ENV:
- dev
script:
- apk add git
- docker buildx build --push ${BUILD_OPTIONS}
......@@ -397,7 +410,16 @@ jug_xl:nightly:
- when: never
needs:
- version
- jug_dev
- job: jug_dev
parallel:
matrix:
- BUILD_TYPE:
- nightly
BASE_IMAGE: debian_stable_base
BUILD_IMAGE: jug_
PLATFORM: linux/amd64,linux/arm64/v8
ENV:
- dev
script:
- |
PUSH_NIGHTLY_WITH_DATE=""
......
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