Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/SimpleTZ-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ jobs:
working-directory: ./SimpleTrustZone/
run: cbuild SimpleTZ.csolution.yml --packs --active AVH@${{ matrix.build.type }} --toolchain ${{ matrix.compiler.name }}

- name: Build project CM33_ns for build-type ${{ matrix.build.type }} with ${{ matrix.compiler.name }}
working-directory: ./SimpleTrustZone/
run: cbuild SimpleTZ.csolution.yml --packs --active AVH-NS-only@${{ matrix.build.type }} --toolchain ${{ matrix.compiler.name }}

- name: Execute project CM33_s and CM33_ns for build-type ${{ matrix.build.type }} with ${{ matrix.compiler.name }} using FVP_MPS2_Cortex-M33
working-directory: ./SimpleTrustZone/
Expand Down
8 changes: 6 additions & 2 deletions SimpleTrustZone/SimpleTZ.csolution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@ solution:
target-set:
- set: Debug
images:
- project-context: CM33_ns.Debug
# loading secure image as hex file into FVP Model
- image: out/CM33_s/AVH/Debug/CM33_s.hex
load: image
- project-context: CM33_ns.Debug
debugger:
name: Arm-FVP
model: FVP_MPS2_Cortex-M33
Expand All @@ -51,6 +52,9 @@ solution:
- set: Release
images:
- project-context: CM33_ns.Release
# loading secure image as hex file into FVP Model
- image: out/CM33_s/AVH/Release/CM33_s.hex
load: image
debugger:
name: Arm-FVP
model: FVP_MPS2_Cortex-M33
Expand All @@ -70,5 +74,5 @@ solution:
optimize: balanced

projects:
- project: ./CM33_ns/CM33_ns.cproject.yml
- project: ./CM33_s/CM33_s.cproject.yml
- project: ./CM33_ns/CM33_ns.cproject.yml
Loading