Final tweaks to General chapter (#66) #123
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: Build - Network | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- '.ci/Network/**' | |
- .github/workflows/build_net.yml | |
- 'Examples/Network/**' | |
- 'Components/Network/**' | |
push: | |
branches: [main] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
TARGET_TYPE: CM4 | |
TARGET_DEVICE: ARMCM4 | |
TARGET_LAYER: $SolutionDir()$/../../.ci/Board/Board.clayer.yml | |
jobs: | |
Build: | |
strategy: | |
fail-fast: false | |
matrix: | |
compiler: [AC6, GCC] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout MDK-Middleware | |
uses: actions/checkout@v4 | |
with: | |
path: ./MDK-Middleware | |
- name: Setup board layer | |
working-directory: ./MDK-Middleware | |
run: | | |
sed -i "s|target-types:|&\n - type: $TARGET_TYPE\n device: $TARGET_DEVICE\n variables:\n - Board-Layer: $TARGET_LAYER|" ./Examples/Network/Network.csolution.yml | |
- name: Cache packs | |
uses: actions/cache@v4 | |
with: | |
key: cmsis-packs-${{ hashFiles('**/*.csolution.yml', '**/*.cproject.yml', '**/*.clayer.yml') }} | |
restore-keys: | | |
cmsis-packs- | |
path: /home/runner/.cache/arm/packs | |
- name: Prepare vcpkg env | |
uses: ARM-software/cmsis-actions/vcpkg@main | |
with: | |
config: ./MDK-Middleware/.ci/vcpkg-configuration.json | |
- name: Initialize CMSIS pack root folder | |
run: | | |
cpackget init https://www.keil.com/pack/index.pidx | |
cpackget update-index | |
- name: Use local MDK-Middleware pack | |
working-directory: ./MDK-Middleware/ | |
run: | | |
cpackget rm Keil.MDK-Middleware || true | |
cpackget add ./Keil.MDK-Middleware.pdsc | |
- name: Activate Arm tool license | |
run: | | |
armlm activate --server https://mdk-preview.keil.arm.com --product KEMDK-COM0 | |
- uses: ammaraskar/gcc-problem-matcher@master | |
- name: Build Network sources | |
working-directory: ./MDK-Middleware | |
if: always() | |
run: | | |
cbuild ./.ci/Library.csolution.yml --packs --update-rte --context Network --toolchain ${{ matrix.compiler }} | |
- name: Build Network examples | |
working-directory: ./MDK-Middleware/ | |
if: always() | |
run: | | |
cbuild ./Examples/Network/Network.csolution.yml --packs --update-rte --toolchain ${{ matrix.compiler }} | |
- name: Deactivate Arm tool license | |
if: always() | |
run: | | |
armlm deactivate --product KEMDK-COM0 |