-
Notifications
You must be signed in to change notification settings - Fork 847
47 lines (42 loc) · 1.27 KB
/
windows.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
name: Build on Windows
on:
workflow_dispatch:
push:
branches:
- 'test_workflow'
- 'develop'
- 'master'
jobs:
build:
runs-on: windows-2022
steps:
- name: Clean workspace
shell: bash
run: |
echo "Cleaning up previous run"
rm -rf "${{ github.workspace }}/pico-sdk"
rm -rf "${{ github.workspace }}/pico-examples"
- name: Checkout pico-examples
uses: actions/checkout@v4
with:
path: pico-examples
- name: Checkout pico-sdk/develop
uses: actions/checkout@v4
with:
repository: raspberrypi/pico-sdk
ref: develop
path: pico-sdk
- name: Checkout pico-sdk submodules
working-directory: ${{github.workspace}}/pico-sdk
run: git submodule update --init
- name: Install dependencies
working-directory: ${{github.workspace}}/pico-examples
run: choco install .github/workflows/choco_packages.config
- name: Build Project
working-directory: ${{github.workspace}}/pico-examples
shell: pwsh
run: |
mkdir build
cd build
cmake .. -G Ninja -DPICO_SDK_PATH=../../pico-sdk -DCMAKE_BUILD_TYPE=Debug -DPICO_BOARD=pico_w
cmake --build .