Skip to content

Subordinate charm config PoC #1073

Subordinate charm config PoC

Subordinate charm config PoC #1073

name: Integration tests
on:
pull_request:
jobs:
extra-args:
runs-on: ubuntu-latest
outputs:
args: ${{ steps.flags.outputs.args }}
steps:
- name: Determine extra args
id: flags
env:
TITLE: ${{ github.event.pull_request.title }}
JOB: ${{ github.job }}
WORKFLOW: ${{ github.workflow }}
run: |
EXTRA_ARGS="--crash-dump=on-failure"
if [[ "$TITLE" == *"[COS]"* ]]; then
EXTRA_ARGS="$EXTRA_ARGS --cos"
fi
echo "args=$EXTRA_ARGS" >> "$GITHUB_OUTPUT"
charmcraft-channel:
runs-on: ubuntu-24.04
outputs:
channel: ${{ steps.charmcraft.outputs.channel }}
steps:
- uses: actions/checkout@v4
- id: charmcraft
run: echo "channel=$(cat .charmcraft-channel)" >> $GITHUB_OUTPUT
integration-tests:
uses: canonical/operator-workflows/.github/workflows/integration_test.yaml@main
needs: [charmcraft-channel, extra-args]
secrets: inherit
strategy:
matrix:
arch:
- {id: amd64, builder-label: ubuntu-22.04, tester-arch: x64}
suite: ["k8s", "etcd", "ceph"]
with:
identifier: ${{ matrix.arch.id }}-${{ matrix.suite }}
builder-runner-label: ${{ matrix.arch.builder-label }}
charmcraft-channel: ${{ needs.charmcraft-channel.outputs.channel }}
extra-arguments: ${{needs.extra-args.outputs.args}} -k test_${{ matrix.suite }}
juju-channel: 3/stable
load-test-enabled: false
provider: lxd
self-hosted-runner: true
self-hosted-runner-arch: ${{ matrix.arch.tester-arch }}
test-timeout: 120
test-tox-env: integration-${{ matrix.suite }}
trivy-fs-enabled: false
trivy-image-config: "trivy.yaml"
tmate-debug: true
zap-enabled: false