Skip to content

Commit

Permalink
tentative matrix fix 5
Browse files Browse the repository at this point in the history
  • Loading branch information
VynDragon committed Feb 10, 2025
1 parent 95ef61e commit 033b4e3
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,7 @@ jobs:
fail-fast: false
matrix:
cmake_build_type: [Debug]
pico_board: ["pico_ice", "pico2_ice"]
include:
- pico_platform: "rp2040"
pico_board: "pico_ice"
- pico_platform: "rp2350"
pico_board: "pico2_ice"
additional_var_fix: "dummy"
- pico_platform: "rp2350-riscv"
pico_board: "pico2_ice"
pico: [ {board: "pico_ice", platform: "rp2040"}, {board: "pico2_ice", platform: "rp2350"}, {board: "pico2_ice", platform: "rp2350-riscv"}]

example:
- rp2_blinky
Expand Down Expand Up @@ -69,5 +61,5 @@ jobs:
cd examples/${{ matrix.example }}
mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} -DPICO_BOARD=${{ matrix.pico_board }} -DPICO_PLATFORM=${{ matrix.pico_platform }} ..
cmake -DCMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} -DPICO_BOARD=${{ matrix.pico.board }} -DPICO_PLATFORM=${{ matrix.pico.platform }} ..
make -j4

0 comments on commit 033b4e3

Please sign in to comment.