From d6dfcd011332a19466e5d525557bcdf74b6ce766 Mon Sep 17 00:00:00 2001 From: Judit Novak Date: Fri, 1 Sep 2023 16:15:35 +0200 Subject: [PATCH] [Fix] Fix missing env variable on release pipeline (#115) ## Issue Release pipeline was missing to pass a value for the LIBJUJU_VERSION_SPECIFIER variable for unittests (that need to know what version of Juju is running, since divergences on Juju3 feature: Secrets) ## Solution Passing the missing info on the Release pipeline ## Testing Tested on this pipeline: https://github.com/canonical/opensearch-operator/actions/runs/6048563873 --- .github/workflows/release.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 20c569558..9726aca00 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,7 +10,15 @@ on: jobs: pre-integration-checks: secrets: inherit + strategy: + fail-fast: false + matrix: + include: + - libjuju: ==3.1.0.1 + - libjuju: ==2.9.42.4 uses: ./.github/workflows/pre_integration_checks.yaml + with: + libjuju-version-specifier: ${{ matrix.libjuju }} integration: needs: