From 4c1d36220e6f187f2c2439fb248edd1e63fc4ea8 Mon Sep 17 00:00:00 2001 From: Gerald Pinder <4626052+gmpinder@users.noreply.github.com> Date: Tue, 14 May 2024 11:14:03 -0400 Subject: [PATCH] Try building all images in one go --- .gitignore | 1 + .gitlab-ci.yml | 19 ++++++++++--------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 58a9d77..cc67be2 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ cosign.key /Containerfile /.env +/Containerfile.* diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 40ce97a..35cf24d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,17 +15,17 @@ build-image: stage: build interruptible: true image: - name: ghcr.io/blue-build/cli:108-feat-allow-adding-stages-to-run-builds-for-things-like-compiled-programs + name: ghcr.io/blue-build/cli:multi-recipe-stages entrypoint: [""] services: - docker:dind - parallel: - matrix: - - RECIPE: - - jp-desktop.yml - - jp-laptop.yml - - jp-desktop-39.yml - - cp-laptop.yml + # parallel: + # matrix: + # - RECIPE: + # - jp-desktop.yml + # - jp-laptop.yml + # - jp-desktop-39.yml + # - cp-laptop.yml variables: DOCKER_HOST: tcp://docker:2376 DOCKER_TLS_CERTDIR: /certs @@ -38,4 +38,5 @@ build-image: - export COSIGN_PRIVATE_KEY=$(cat .secure_files/cosign.key) script: - sleep 5 - - bluebuild build -vv -B docker -p ./recipes/$RECIPE + - bluebuild build -vv -B docker -p ./recipes/*.yml + # - bluebuild build -vv -B docker -p ./recipes/$RECIPE