Lines Matching +full:runs +full:- +full:on
1 name: Build on macOS
2 on:
6 - 'develop'
7 - 'master'
8 - 'test_workflow'
12 runs-on: macos-latest
14 - name: Clean workspace
17 rm -rf "${{ github.workspace }}"
18 mkdir -p "${{ github.workspace }}"
19 - name: Checkout repo
21 - name: Checkout submodules
22 run: git submodule update --init
23 - name: Install dependencies
26 brew install --cask gcc-arm-embedded
28 - name: Build Project
34 …cmake .. -G "Unix Makefiles" -DPICO_SDK_TESTS_ENABLED=1 -DCMAKE_BUILD_TYPE=Debug -DPICO_BOARD=pico…
35 cmake --build .
37 - name: Build Native
43 …cmake .. -G "Unix Makefiles" -DPICO_SDK_TESTS_ENABLED=1 -DCMAKE_BUILD_TYPE=Debug -DPICO_PLATFORM=h…
44 cmake --build .