From 5a6a64901df880a056435ae1dd9fb176043ba3c8 Mon Sep 17 00:00:00 2001 From: Diego Lendoiro Date: Mon, 5 Jun 2023 17:09:17 +0200 Subject: [PATCH] PB-24864: added curl as dependency on CI --- .gitlab-ci/jobs/publish.yml | 3 +++ .gitlab-ci/jobs/review.yml | 1 + 2 files changed, 4 insertions(+) diff --git a/.gitlab-ci/jobs/publish.yml b/.gitlab-ci/jobs/publish.yml index b1d17cef..c1f4aaa5 100644 --- a/.gitlab-ci/jobs/publish.yml +++ b/.gitlab-ci/jobs/publish.yml @@ -5,6 +5,7 @@ publish-chrome: when: manual script: - | + apt-get update && apt-get install -y curl bash .gitlab-ci/scripts/bin/publish.sh echo "Sending slack build notification" echo "================================" @@ -17,6 +18,7 @@ publish-firefox: when: manual script: - | + apt-get update && apt-get install -y curl bash .gitlab-ci/scripts/bin/publish.sh firefox echo "Sending slack build notification" echo "================================" @@ -29,6 +31,7 @@ publish-edge: when: manual script: - | + apt-get update && apt-get install -y curl bash .gitlab-ci/scripts/bin/publish.sh edge echo "Sending slack build notification" echo "================================" diff --git a/.gitlab-ci/jobs/review.yml b/.gitlab-ci/jobs/review.yml index 7e793af2..dc587d84 100644 --- a/.gitlab-ci/jobs/review.yml +++ b/.gitlab-ci/jobs/review.yml @@ -4,6 +4,7 @@ review-chrome: - if: "$CI_COMMIT_TAG" script: - | + apt-get update && apt-get install -y curl bash .gitlab-ci/scripts/bin/review.sh chrome echo "Sending slack build notification" echo "================================"