Skip to content

Commit

Permalink
docs(ci): Use failing configure step
Browse files Browse the repository at this point in the history
  • Loading branch information
srid authored Oct 18, 2024
1 parent 2422ed9 commit be6ce4a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion doc/src/om/ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- id: set-matrix
run: echo "matrix=$(om ci gh-matrix --systems=x86_64-linux,aarch64-darwin | jq -c .)" >> $GITHUB_OUTPUT
run: |
set -euxo pipefail
MATRIX="$(om ci gh-matrix --systems=x86_64-linux,aarch64-darwin | jq -c .)"
echo "matrix=$MATRIX" >> $GITHUB_OUTPUT
nix:
runs-on: ${{ matrix.system }}
needs: configure
Expand Down

0 comments on commit be6ce4a

Please sign in to comment.