Skip to content

Commit

Permalink
Fix Build Cache Image job.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Feb 19, 2025
1 parent de62388 commit 3f91b8b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-cache-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@ jobs:
- name: Setup matrix combinations
id: setup-matrix-combinations
run: |
echo ::set-output name=matrix-combinations::$(
echo tox-envs="$(
tox -qqe build-cache-image -- --list-tox-envs | \
grep -vE "^$" | \
jq -R '{"tox-env":.}' | jq -src '{"include":.}'
)
jq -R . | jq -src .
)" >> "$GITHUB_OUTPUT"
outputs:
matrix-combinations: ${{ steps.setup-matrix-combinations.outputs.matrix-combinations }}
build-cache-images:
name: Build ./dtox.sh Cache for ${{ matrix.tox-env }}
needs: setup-matrix
runs-on: ubuntu-24.04
strategy:
matrix: ${{ fromJson(needs.setup-matrix.outputs.matrix-combinations) }}
matrix:
tox-env: ${{ fromJson(needs.setup-matrix.outputs.matrix-combinations) }}
steps:
- name: Checkout Pex
uses: actions/checkout@v4
Expand Down

0 comments on commit 3f91b8b

Please sign in to comment.