fix: 路径错误 #16
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 | |
- name: Compile | |
run: | | |
. ~/.vcpkg/vcpkg-init | |
vcpkg use uv2csolution | |
cd MDK-ARM | |
uv2csolution CoreMark.uvprojx | |
vcpkg activate | |
cpackget init https://arduino.luatos.com/cmsis-pack/AirM2M.pidx | |
cpackget add AirM2M.AIR001_DFP.1.1.3 | |
cpackget init https://www.keil.com/pack/index.pidx | |
armlm activate -product KEMDK-COM0 -server https://mdk-preview.keil.arm.com | |
cbuild CoreMark.csolution.yml --update-rte --packs | |
vcpkg deactivate | |
vcpkg use armclang | |
fromelf --bin output="out/CoreMark/Project/CoreMark.bin" "out/CoreMark/Project/CoreMark.axf" | |
fromelf --i32 --output="out/CoreMark/Project/CoreMark.hex" "out/CoreMark/Project/CoreMark.axf" | |
- name: release | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
tag: "Latest" | |
artifacts: "MDK-ARM/out/CoreMark/Project/CoreMark.hex, MDK-ARM/out/CoreMark/Project/CoreMark.bin" |