diff --git a/.github/workflows/cirque.yaml b/.github/workflows/cirque.yaml index d355db3202bb55..76483ff6df790e 100644 --- a/.github/workflows/cirque.yaml +++ b/.github/workflows/cirque.yaml @@ -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: | diff --git a/build/toolchain/host/BUILD.gn b/build/toolchain/host/BUILD.gn index 9640e65e51620a..efe6a81b094859 100644 --- a/build/toolchain/host/BUILD.gn +++ b/build/toolchain/host/BUILD.gn @@ -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 + } } }