Add initial pack contents #3
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: Test-Examples # BSP Examples | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
schedule: | |
- cron: '00 20 * * 6' | |
jobs: | |
Test-Examples: # Install tools, build | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout .ci folder | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
.ci | |
- name: Install tools | |
uses: ARM-software/cmsis-actions/vcpkg@v1 | |
with: | |
config: "./.ci/vcpkg-configuration.json" | |
- name: Activate Arm tool license | |
uses: ARM-software/cmsis-actions/armlm@v1 | |
- name: Checkout current repository | |
uses: actions/checkout@v4 | |
with: | |
path: ./BSP | |
- name: Checkout STM32H7xx_DFP | |
uses: actions/checkout@v4 | |
with: | |
repository: Open-CMSIS-Pack/STM32H7xx_DFP | |
path: ./DFP | |
- name: Checkout CMSIS-Driver_STM32 | |
uses: actions/checkout@v4 | |
with: | |
repository: Open-CMSIS-Pack/CMSIS-Driver_STM32 | |
path: ./Drivers | |
- name: Initialize CMSIS pack root folder | |
run: | | |
cpackget init https://www.keil.com/pack/index.pidx | |
cpackget update-index | |
- name: Add local CMSIS packs | |
run: | | |
cpackget add ./BSP/Keil.NUCLEO-H743ZI2_BSP.pdsc | |
cpackget add ./DFP/Keil.STM32H7xx_DFP.pdsc | |
cpackget add ./Drivers/ARM.CMSIS-Driver_STM32.pdsc | |
- name: Copy Blinky example to CI/Examples/ folder | |
working-directory: ./ | |
run: | | |
mkdir -p ./CI/Examples/Blinky | |
cp -rf ./BSP/Examples/Blinky/* ./CI/Examples/Blinky/ | |
- name: Build Blinky AC6 | |
if: always() | |
working-directory: ./CI/Examples/Blinky | |
run: | | |
cbuild ./Blinky.csolution.yml --packs --update-rte --packs --toolchain AC6 --rebuild | |
- name: Upload Artifact of the Blinky AC6 build | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Blinky_AC6 | |
path: | | |
./CI/Examples/Blinky/ | |
!./CI/Examples/Blinky/tmp/ | |
retention-days: 1 |