diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 971acfb..5f05d8f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ stages: - build -build-image: +build-images: stage: build image: repo.nstart.local/nstart/docker-cli-buildx:1.0.0 services: @@ -11,8 +11,14 @@ build-image: variables: DOCKER_HOST: tcp://docker:2375 DOCKER_TLS_CERTDIR: "" + parallel: + matrix: + - BAKE_TARGET: + - jdk17-noble + - 3-14-slim-trixie + script: - echo $REGISTRY_PASSWORD | docker login -u $REGISTRY_USER --password-stdin $REGISTRY - - docker bake all --no-cache --push + - docker bake "$BAKE_TARGET" --no-cache --push only: - master