We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cecc2d commit b9d7207Copy full SHA for b9d7207
1 file changed
.github/workflows/ports_psoc6.yml
@@ -67,7 +67,16 @@ jobs:
67
- name: Setup devices
68
run: |
69
cp mpy-psoc6_${{ matrix.board }}_${{ needs.server-build.outputs.commit_sha }}/firmware.hex .
70
- source tools/ci.sh && ci_psoc6_flash_multiple_devices ${{ matrix.board }} firmware.hex tools/psoc6/${{ runner.name }}-devs.yml
+ source tools/ci.sh && ci_psoc6_flash_multiple_devices ${{ matrix.board }} firmware.hex tools/psoc6/${{ runner.name }}-devs.yml
71
+ - name: Check for test file
72
+ run: |
73
+ if [ ! -f ./ports/psoc6/inputs/test_fs_small_file.txt ]; then
74
+ echo "File test_fs_small_file.txt not found!"
75
+ exit 1
76
+ fi
77
+ - name: Debug: Listing files in input directory
78
79
+ ls -l ./ports/psoc6/inputs/
80
- name: Run psoc6 tests
81
timeout-minutes: 12
82
0 commit comments