Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
PathogenDavid committed Jun 13, 2024
1 parent e635713 commit cd635c2
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/bonsai-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ on:
workflow_dispatch:
pull_request:
jobs:
create-build-matrix:
create_build_matrix:
name: Create Build Matrix
runs-on: ubuntu-latest
outputs:
matrix: steps.create-matrix.outputs.matrix
matrix: steps.create_matrix.outputs.matrix
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -16,22 +16,22 @@ jobs:
with:
python-version: '3.10'
- name: Create Build Matrix
id: create-matrix
id: create_matrix
run: python .github/workflows/bonsai-matrix-build.py

print-matrix-json:
needs: create-build-matrix
runs-on: ubuntu-latest
steps:
- run: echo $MATRIX
env:
MATRIX: ${{fromJSON(needs.create-build-matrix.outputs.matrix)}}
# print-matrix-json:
# needs: create_build_matrix
# runs-on: ubuntu-latest
# steps:
# - run: echo $MATRIX
# env:
# MATRIX: ${{fromJSON(needs.create_build_matrix.outputs.matrix)}}

build-and-test:
needs: create-build-matrix
needs: create_build_matrix
strategy:
fail-fast: false
matrix: ${{fromJSON(needs.create-build-matrix.outputs.matrix)}}
matrix: ${{fromJSON(needs.create_build_matrix.outputs.matrix)}}
name: ${{matrix.platform.name}} ${{matrix.configuration}}
runs-on: ${{matrix.platform.os}}
steps:
Expand Down

0 comments on commit cd635c2

Please sign in to comment.