We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0f438d commit 95e2ca6Copy full SHA for 95e2ca6
.github/workflows/ci-pico-sdk.yml
@@ -9,7 +9,7 @@ jobs:
9
runs-on: ubuntu-latest
10
strategy:
11
matrix:
12
- sdk_version: [1.2.0, 1.3.1, 1.4.0]
+ sdk_version: [1.2.0, 1.3.1, 1.4.0, 1.5.1]
13
steps:
14
- uses: actions/checkout@v4
15
- name: Cache Pico SDK
@@ -31,7 +31,7 @@ jobs:
31
git clone https://github.com/raspberrypi/pico-sdk.git --depth 1 --branch ${SDK_VERSION}
32
cd pico-sdk && git submodule update --init && cd ..
33
git clone https://github.com/raspberrypi/pico-examples.git --depth 1 --branch "sdk-${SDK_VERSION}"
34
- cd pico-examples && mkdir build && cd build && cmake .. && make -j4
+ cd pico-examples && mkdir build && cd build && cmake .. && make -C hello_world/usb -j4
35
env:
36
SDK_VERSION: ${{ matrix.sdk_version }}
37
PICO_SDK_PATH: ~/pico/pico-sdk
0 commit comments