We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a28c6a commit 10d2754Copy full SHA for 10d2754
.github/workflows/hil.yml
@@ -53,17 +53,19 @@ jobs:
53
steps:
54
- name: Checkout Repository
55
uses: actions/checkout@v3
56
-
57
- name: Build sketches
58
run: |
59
bash .github/scripts/tests_build.sh -c -t ${{matrix.chip}} -i ${{matrix.chunks}} -m ${{env.MAX_CHUNKS}}
+ - name: List files in the repository
60
+ run: |
61
+ ls ${{ github.workspace }}
62
- name: Upload ${{matrix.chip}}-${{matrix.chunks}} artifacts
63
uses: actions/upload-artifact@v3
64
with:
65
name: ${{matrix.chip}}-${{matrix.chunks}}.artifacts
66
path: |
- ${{ github.workspace }}/tests/*/build*/*.bin
- ${{ github.workspace }}/tests/*/build*/*.json
67
+ /tests/*/build*/*.bin
68
+ /tests/*/build*/*.json
69
if-no-files-found: error
70
Test:
71
needs: [gen_chunks, Build]
0 commit comments