-
Notifications
You must be signed in to change notification settings - Fork 19
47 lines (47 loc) · 1.47 KB
/
picosdk-builds.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: Pico SDK builds
on:
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
defaults:
run:
shell: bash
jobs:
picosdk_info:
runs-on: ubuntu-latest
container: ghcr.io/pstolarz/picosdk-ci
steps:
- name: Pico SDK recent versions info
run: |
cd /pico-sdk
git fetch || true
git tag | sort | awk "/$(git describe --tags)/ {f=1} f==1 {print}"
picosdk_build:
runs-on: ubuntu-latest
container: ghcr.io/pstolarz/picosdk-ci
strategy:
matrix:
example:
- DallasTemperature
env:
BUILD_FLAGS: "\
-DCONFIG_PWR_CTRL_ENABLED \
-DCONFIG_OVERDRIVE_ENABLED \
-DCONFIG_CRC16_ENABLED \
-DCONFIG_ITERATION_RETRIES=1"
steps:
- uses: actions/checkout@v3
- name: Build
run: |
repo_dir=$(pwd)
rm -rf /tmp/picosdk-build && mkdir /tmp/picosdk-build && cd /tmp/picosdk-build
ln -s ${repo_dir} OneWireNg
ln -s ${repo_dir}/examples/pico-sdk/${{ matrix.example }}/${{ matrix.example }}.cpp ${{ matrix.example }}.cpp
ln -s ${repo_dir}/examples/pico-sdk/${{ matrix.example }}/CMakeLists.txt CMakeLists.txt
ln -s ${repo_dir}/examples/pico-sdk/${{ matrix.example }}/pico_sdk_import.cmake pico_sdk_import.cmake
mkdir build && cd build
sudo bash -c "PICO_SDK_PATH=/pico-sdk CXXFLAGS=\"${BUILD_FLAGS}\" CFLAGS=\"${BUILD_FLAGS}\" cmake .. && make"