-
-
Notifications
You must be signed in to change notification settings - Fork 0
113 lines (95 loc) · 3.34 KB
/
cmake.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: CMake
on:
push:
pull_request:
release:
types: [created]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
name: ${{matrix.name}}
strategy:
matrix:
include:
- os: ubuntu-20.04
name: Linux
cache-key: linux
cmake-args: '-DPICO_SDK_PATH=$GITHUB_WORKSPACE/pico-sdk -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache'
runs-on: ${{matrix.os}}
env:
PICO_SDK_PATH: $GITHUB_WORKSPACE/pico-sdk
PIMORONI_PICO_LIBS: $GITHUB_WORKSPACE/pimoroni-pico
RELEASE_FILE: ${{github.event.repository.name}}-${{github.event.release.tag_name}}
steps:
- name: Compiler Cache
uses: actions/cache@v4
with:
path: /home/runner/.ccache
key: ccache-cmake-${{github.ref}}-${{matrix.board}}-${{github.sha}}
restore-keys: |
ccache-cmake-${{github.ref}}-${{matrix.board}}
ccache-cmake-${{github.ref}}
ccache-cmake
- name: Checkout Code
uses: actions/checkout@v3
with:
path: src
# Checkout the Pico SDK
- name: Checkout Pico SDK
uses: actions/checkout@v3
with:
repository: raspberrypi/pico-sdk
path: pico-sdk
submodules: true
- name: Install Arm GNU Toolchain (arm-none-eabi-gcc)
uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
release: '13.3.Rel1'
- name: RP2350 - Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build-rp2350
- name: RP2350 - Configure CMake
shell: bash
working-directory: ${{runner.workspace}}/build-rp2350
run: cmake $GITHUB_WORKSPACE/src ${{matrix.cmake-args}} -DPICO_BOARD=PICO2
- name: RP2350 - Build
working-directory: ${{runner.workspace}}/build-rp2350
shell: bash
run: |
ccache --zero-stats || true
cmake --build . --config $BUILD_TYPE -j 2
ccache --show-stats || true
- name: RP2040 - Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build-rp2040
- name: RP2040 - Configure CMake
shell: bash
working-directory: ${{runner.workspace}}/build-rp2040
run: cmake $GITHUB_WORKSPACE/src ${{matrix.cmake-args}} -DPICO_BOARD=PICO
- name: RP2040 - Build
working-directory: ${{runner.workspace}}/build-rp2040
shell: bash
run: |
ccache --zero-stats || true
cmake --build . --config $BUILD_TYPE -j 2
ccache --show-stats || true
- name: Combine Files
working-directory: ${{runner.workspace}}
run: |
cat build-rp2040/flash_nuke.uf2 build-rp2350/flash_nuke.uf2 > universal_flash_nuke.uf2
zip universal_flash_nuke.zip universal_flash_nuke.uf2
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: universal_flash_nuke
path: ${{runner.workspace}}/universal_flash_nuke.uf2
- name: Upload Release
if: github.event_name == 'release'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
asset_path: ${{runner.workspace}}/universal_flash_nuke.zip
upload_url: ${{github.event.release.upload_url}}
asset_name: universal_flash_nuke.zip
asset_content_type: application/zip