Skip to content

Commit

Permalink
[DPE-5643] - add nightly 3.6 runs (#505)
Browse files Browse the repository at this point in the history
## Issue
We want to support 3.6 runs but do not know what issues there might be

## Solution
Add nightly runs for 3.6 so we can track what changes for 3.6 might be
needed
  • Loading branch information
MiaAltieri authored Oct 9, 2024
1 parent ad972bf commit 2c44446
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,17 @@ jobs:
cache: true

integration-test:
name: Integration test charm | 3.5.3
strategy:
fail-fast: false
matrix:
juju:
# This runs on all runs
- agent: 3.5.3 # renovate: juju-agent-pin-minor
allure_report: true
# This runs only on scheduled runs, DPW 21 specifics (scheduled + 3.6/X)
- snap_channel: 3.6/beta
allure_report: false
name: Integration test charm | ${{ matrix.juju.agent || matrix.juju.snap_channel }}
needs:
- lint
- unit-test
Expand All @@ -106,8 +116,9 @@ jobs:
with:
artifact-prefix: packed-charm-cache-true
cloud: lxd
juju-agent-version: 3.5.3 # renovate: juju-agent-pin-minor
_beta_allure_report: true
juju-agent-version: ${{ matrix.juju.agent }}
juju-snap-channel: ${{ matrix.juju.snap_channel }}
_beta_allure_report: ${{ matrix.juju.allure_report }}
permissions:
contents: write # Needed for Allure Report beta
secrets:
Expand Down

0 comments on commit 2c44446

Please sign in to comment.