Skip to content

Commit

Permalink
Allow build-examples to build darwin-x64-rpc-console (#11807)
Browse files Browse the repository at this point in the history
* Allow build-examples to build darwin-x64-rpc-console

* Also disable fake tests in cirque builds

* Update whitespacing in options in cirque
  • Loading branch information
andy31415 authored and pull[bot] committed Sep 29, 2022
1 parent f7c5d2a commit 4319872
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cirque.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ jobs:
chip_build_tests=false \
enable_host_gcc_build=true \
enable_host_gcc_mbedtls_build=false \
enable_host_clang_build = false
enable_host_clang_build=false \
enable_fake_tests=false
- name: Run Tests
timeout-minutes: 25
run: |
Expand Down
16 changes: 9 additions & 7 deletions build/toolchain/host/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,14 @@ gcc_toolchain("${host_os}_${host_cpu}_clang") {
}
}

gcc_toolchain("fake_${host_cpu}_gcc") {
toolchain_args = {
current_os = host_os
current_os = host_os
current_cpu = host_cpu
is_clang = false
chip_fake_platform = true
if (defined(chip_fake_plaform)) {
gcc_toolchain("fake_${host_cpu}_gcc") {
toolchain_args = {
current_os = host_os
current_os = host_os
current_cpu = host_cpu
is_clang = false
chip_fake_platform = true
}
}
}

0 comments on commit 4319872

Please sign in to comment.