Skip to content

Commit 4a8a60f

Browse files
committed
multi_gcc: add host
1 parent 10b9db4 commit 4a8a60f

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/multi-gcc.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ jobs:
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

.github/workflows/scripts/generate_multi_gcc_workflow.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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

100106
platforms = []

0 commit comments

Comments
 (0)