-
Notifications
You must be signed in to change notification settings - Fork 14
43 lines (37 loc) · 1.05 KB
/
DualCore-CI.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: "DualCore: Test Build"
on:
workflow_dispatch:
pull_request:
branches: [main]
paths:
- DualCore/**
- .github/workflows/DualCore-CI.yml
push:
branches: [main]
paths:
- DualCore/**
- .github/workflows/DualCore-CI.yml
schedule:
- cron: '00 20 * * 6'
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- 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: Build HelloWorld with AC6 and all contexts
working-directory: ./DualCore/
run: cbuild HelloWorld.csolution.yml --packs --toolchain AC6
- name: Upload HelloWorld AC6 build Artifacts
uses: actions/upload-artifact@v4
with:
name: HelloWorld_AC6
path: |
./DualCore/out/
retention-days: 1