From 2a6098d5156c5d79eaca460e3428a9a04f5e6fb1 Mon Sep 17 00:00:00 2001 From: Gwen Le Bihan Date: Wed, 13 Nov 2024 00:43:15 +0100 Subject: [PATCH] chore(ci): seems to work when only running one job at a time --- Dockerfile | 2 -- ci/docker.gitlab-ci.yml | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fae9700c3..b274df2d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,9 +24,7 @@ COPY scripts/ /app/scripts/ RUN rm -rf packages/mock-n7-ldap pack RUN rm -rf packages/oauth-client -RUN df -h RUN yarn install -RUN df -h; exit 1 RUN yarn cp-env RUN yarn generate-buildinfo diff --git a/ci/docker.gitlab-ci.yml b/ci/docker.gitlab-ci.yml index f643a2397..5239dd65d 100644 --- a/ci/docker.gitlab-ci.yml +++ b/ci/docker.gitlab-ci.yml @@ -50,6 +50,7 @@ deploy_app: SENTRY_PROJECT: app rules: - if: $CI_COMMIT_TAG =~ /^@churros\/app@(\d+\.\d+\.\d+)/ + - when: manual script: - export TAG=$(echo $CI_COMMIT_TAG | sed 's/@churros\/app@//') - | @@ -68,6 +69,7 @@ deploy_sync: stage: deploy rules: - if: $CI_COMMIT_TAG =~ /^@churros\/sync@(\d+\.\d+\.\d+)/ + - when: manual script: - export TAG=$(echo $CI_COMMIT_TAG | sed 's/@churros\/sync@//') - |