Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,29 @@ jobs:
strategy:
fail-fast: false
matrix:
juju-channel: ["3.6/stable", "4/beta"]
scenario: ["tls_full", "tls_external", "tls_internal", "tls_none"]
exclude:
- juju-channel: "4/beta"
scenario: "tls_external"
- juju-channel: "4/beta"
scenario: "tls_internal"
- juju-channel: "4/beta"
scenario: "tls_none"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Concierge prepare
if: ${{ runner.environment == 'github-hosted' }}
run: |
sudo snap install concierge --classic
sudo concierge prepare --juju-channel 3.6/stable -p microk8s --extra-snaps just,astral-uv,terraform
sudo concierge prepare --juju-channel ${{ matrix.juju-channel }} -p microk8s --extra-snaps just,astral-uv,terraform

# Setup for Self-hosted (PS7) runners
- name: Install snaps
if: ${{ runner.environment == 'self-hosted' }}
run: |
sudo snap install juju --classic --channel=3.6/stable
sudo snap install juju --classic --channel=${{ matrix.juju-channel }}
sudo snap install just --classic
sudo snap install astral-uv --classic
sudo snap install terraform --classic
Expand Down