Skip to content

Commit 1def928

Browse files
kghostpull[bot]
authored andcommitted
Fix fake platform build (#12870)
1 parent dc8f558 commit 1def928

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
timeout-minutes: 20
9292
run: scripts/run_in_build_env.sh "ninja -C ./out"
9393
build_linux:
94-
name: Build on Linux (gcc_release, clang, mbedtls, simulated)
94+
name: Build on Linux (fake, gcc_release, clang, mbedtls, simulated)
9595
timeout-minutes: 90
9696

9797
runs-on: ubuntu-latest
@@ -146,8 +146,9 @@ jobs:
146146
- name: Setup Build, Run Build and Run Tests
147147
timeout-minutes: 50
148148
run: |
149-
for BUILD_TYPE in gcc_release clang mbedtls; do
149+
for BUILD_TYPE in fake gcc_release clang mbedtls; do
150150
case $BUILD_TYPE in
151+
"fake") GN_ARGS='chip_device_platform="fake"';;
151152
"gcc_release") GN_ARGS='is_debug=false';;
152153
"clang") GN_ARGS='is_clang=true';;
153154
"mbedtls") GN_ARGS='chip_crypto="mbedtls"';;

0 commit comments

Comments
 (0)