add: cmsis-toolbox #10
This file contains 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: release | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
run-script: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install CMSIS-Toolbox | |
run: | | |
. <(curl https://aka.ms/vcpkg-init.sh -L) | |
. ~/.vcpkg/vcpkg-init | |
vcpkg x-update-registry arm | |
vcpkg add cmsis-toolbox | |
cpackget init https://arduino.luatos.com/cmsis-pack/AirM2M.pidx | |
cpackget add AirM2M.AIR001_DFP.1.1.3 | |
- name: Compile | |
run: | | |
. ~/.vcpkg/vcpkg-init | |
vcpkg use uv2csolution | |
cd MDK-ARM | |
uv2csolution CoreMark.uvprojx | |
vcpkg activate | |
armlm activate -product KEMDK-COM0 -server https://mdk-preview.keil.arm.com | |
cbuild CoreMark.csolution.yml --update-rte --packs |