File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 2525 - name : Checkout submodules
2626 run : git submodule update --init
2727
28+ - name : Host Release
29+ run : cd ${{github.workspace}}; mkdir -p build; rm -rf build/*; cd build; cmake ../ -DPICO_SDK_TESTS_ENABLED=1 -DCMAKE_BUILD_TYPE=Release -DPICO_NO_PICOTOOL=1 -DPICO_PLATFORM=host --output-sync=target --no-builtin-rules --no-builtin-variables -j$(nproc)
30+
31+ - name : Host Debug
32+ run : cd ${{github.workspace}}; mkdir -p build; rm -rf build/*; cd build; cmake ../ -DPICO_SDK_TESTS_ENABLED=1 -DCMAKE_BUILD_TYPE=Debug -DPICO_NO_PICOTOOL=1 -DPICO_PLATFORM=host --output-sync=target --no-builtin-rules --no-builtin-variables -j$(nproc)
33+
2834 - name : GCC 6.2.1 Debug Pico W
2935 if : always()
3036 shell : bash
Original file line number Diff line number Diff line change @@ -95,6 +95,12 @@ def __repr__(self):
9595
9696 - name: Checkout submodules
9797 run: git submodule update --init
98+
99+ - name: Host Release
100+ run: cd ${{github.workspace}}; mkdir -p build; rm -rf build/*; cd build; cmake ../ -DPICO_SDK_TESTS_ENABLED=1 -DCMAKE_BUILD_TYPE=Release -DPICO_NO_PICOTOOL=1 -DPICO_PLATFORM=host --output-sync=target --no-builtin-rules --no-builtin-variables -j$(nproc)
101+
102+ - name: Host Debug
103+ run: cd ${{github.workspace}}; mkdir -p build; rm -rf build/*; cd build; cmake ../ -DPICO_SDK_TESTS_ENABLED=1 -DCMAKE_BUILD_TYPE=Debug -DPICO_NO_PICOTOOL=1 -DPICO_PLATFORM=host --output-sync=target --no-builtin-rules --no-builtin-variables -j$(nproc)
98104'''
99105
100106platforms = []
You can’t perform that action at this time.
0 commit comments