Skip to content

Commit

Permalink
[Fix] Fix missing env variable on release pipeline (canonical#115)
Browse files Browse the repository at this point in the history
## 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
  • Loading branch information
juditnovak committed Sep 1, 2023
1 parent cb3611a commit d6dfcd0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d6dfcd0

Please sign in to comment.