Skip to content

Commit

Permalink
.github/.workflows/ports_psoc6.yml: Fixing cd to test path.
Browse files Browse the repository at this point in the history
Signed-off-by: enriquezgarc <enriquezgarcia.external@infineon.com>
  • Loading branch information
jaenrig-ifx committed Aug 3, 2023
1 parent d2e3c18 commit b35c1ed
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/ports_psoc6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,21 @@ jobs:
cp ../../mpy-psoc6_${{ matrix.board }}_${{ needs.server-build.outputs.commit_sha }}/firmware.hex .
source mpy-psoc6.sh && openocd_download_install && openocd_board_conf_download ${{ matrix.board }} && mpy_firmware_deploy ${{ matrix.board }} firmware.hex
cd ../..
cd tests
- name: Run psoc6 tests
run: ./psoc6/run_psoc6_test.sh --psoc6
run: |
cd tests
./psoc6/run_psoc6_test.sh --psoc6
- name: Run psoc6 multi test
run: ./psoc6/run_psoc6_test.sh --psoc6-multi
run: |
cd test
./psoc6/run_psoc6_test.sh --psoc6-multi
- name: Run all implemented tests
# if: github.event_name == 'pull_request'
continue-on-error: true
run: ./psoc6/run_psoc6_tests.sh -i
# continue-on-error: true
run: |
cd test
./psoc6/run_psoc6_tests.sh -i
release:
runs-on: ubuntu-latest
Expand Down

0 comments on commit b35c1ed

Please sign in to comment.