From c24d9c8f1712fcde24b6e8bd48123fcb561a7f40 Mon Sep 17 00:00:00 2001 From: Mateo Florido Date: Tue, 2 Apr 2024 09:53:13 -0500 Subject: [PATCH] Test GH keys --- .github/workflows/integration_test.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/integration_test.yaml b/.github/workflows/integration_test.yaml index 01c5e204..ac11e684 100644 --- a/.github/workflows/integration_test.yaml +++ b/.github/workflows/integration_test.yaml @@ -5,8 +5,12 @@ on: pull_request: jobs: + extra-args: runs-on: ubuntu-latest + strategy: + matrix: + suite: ["-k test_etcd", "-k test_k8s"] outputs: args: ${{ steps.flags.outputs.args }} steps: @@ -14,11 +18,14 @@ jobs: 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 "JOB: $JOB, WORKFLOW: $WORKFLOW" echo "args=$EXTRA_ARGS" >> "$GITHUB_OUTPUT" build-all-charms: