Vorago VA416x0 port improvements for flash layout and preparing for boot defaults #87
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: trustzone-emulator-tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| trustzone-emulator-tests: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/danielinux/m33mu-ci:1.2 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Init submodules | |
| run: | | |
| git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
| git submodule update --init --single-branch | |
| - name: Configure stm32h5 (TZ) and build wolfboot | |
| run: | | |
| cp config/examples/stm32h5-tz.config .config | |
| make wolfboot.bin | |
| - name: Run emu test (stm32h5) | |
| working-directory: test-app/emu-test-apps | |
| run: | | |
| ./test.sh | |
| - name: Clean and build stm32u5 (TZ + wolfcrypt) | |
| run: | | |
| make clean distclean | |
| cp config/examples/stm32u5-wolfcrypt-tz.config .config | |
| make wolfboot.bin | |
| - name: Run emu test (stm32u5) | |
| working-directory: test-app/emu-test-apps | |
| run: | | |
| TARGET=stm32u5 ./test.sh | |
| - name: Clean and build stm32l5 (TZ + wolfcrypt) | |
| run: | | |
| make clean distclean | |
| cp config/examples/stm32l5-wolfcrypt-tz.config .config | |
| make wolfboot.bin | |
| - name: Run emu test (stm32u5) | |
| working-directory: test-app/emu-test-apps | |
| run: | | |
| TARGET=stm32l5 ./test.sh |