Skip to content

Commit

Permalink
DNM debug-again
Browse files Browse the repository at this point in the history
  • Loading branch information
chrysn committed Dec 2, 2023
1 parent 0a6ed66 commit e470e8b
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
enumerate-wrappers-tests:
runs-on: ubuntu-latest
outputs:
test-list: ${{ steps.enumerate.outputs.tests }}
list: ${{ steps.enumerate.outputs.tests }}
steps:
- name: Check out riot-wrappers
uses: actions/checkout@v3
Expand All @@ -73,16 +73,25 @@ jobs:
cat "${GITHUB_OUTPUT}"
- name: Set job summary
run: |
# This doubles as a check to see that our JSON is right
echo 'Local tests were enumerated to be `${{ toJSON(fromJSON( steps.enumerate.outputs.tests )) }}`' >> $GITHUB_STEP_SUMMARY
can-we-read-needs-data:
runs-on: ubuntu-latest
needs: enumerate-wrappers-tests
steps:
- name: Debug
run: |
echo "plain: ${{ needs.enumerate-wrappers-tests.outputs.list }}"
wrappers-tests:
runs-on: ubuntu-latest
needs: enumerate-wrappers-tests
container: riot/riotbuild
strategy:
matrix:
board: [native, sltb001a, samr21-xpro, stk3700]
testdir: ${{ fromJSON(needs.enumerate-wrappers-tests.outputs.tests-list) }}
testdir: ${{ fromJSON(needs.enumerate-wrappers-tests.outputs.list) }}
steps:
# common steps start here
- name: Check out riot-wrappers
Expand Down

0 comments on commit e470e8b

Please sign in to comment.