Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/build-rpi-pico-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
name: Build
runs-on: ubuntu-24.04

env:
PICO_SDK_VERSION: "2.2.0"
PICO_EXTRAS_VERSION: "sdk-2.2.0"

strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -53,17 +57,13 @@ jobs:

- name: Clone Pico SDK
run: |
git clone https://github.com/raspberrypi/pico-sdk.git
cd pico-sdk
git submodule update --init --recursive
cd ..
git clone --depth 1 --branch ${{ env.PICO_SDK_VERSION }} https://github.com/raspberrypi/pico-sdk.git
git -C pico-sdk submodule update --init --recursive

- name: Clone Pico Extras
run: |
git clone https://github.com/raspberrypi/pico-extras.git
cd pico-extras
git submodule update --init --recursive
cd ..
git clone --depth 1 --branch ${{ env.PICO_EXTRAS_VERSION }} https://github.com/raspberrypi/pico-extras.git
git -C pico-extras submodule update --init --recursive

- name: Set Pico environment variables
run: |
Expand Down
Loading