Skip to content

Commit

Permalink
Fix fake platform build (#12870)
Browse files Browse the repository at this point in the history
  • Loading branch information
kghost authored and pull[bot] committed Jan 21, 2022
1 parent dc8f558 commit 1def928
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
timeout-minutes: 20
run: scripts/run_in_build_env.sh "ninja -C ./out"
build_linux:
name: Build on Linux (gcc_release, clang, mbedtls, simulated)
name: Build on Linux (fake, gcc_release, clang, mbedtls, simulated)
timeout-minutes: 90

runs-on: ubuntu-latest
Expand Down Expand Up @@ -146,8 +146,9 @@ jobs:
- name: Setup Build, Run Build and Run Tests
timeout-minutes: 50
run: |
for BUILD_TYPE in gcc_release clang mbedtls; do
for BUILD_TYPE in fake gcc_release clang mbedtls; do
case $BUILD_TYPE in
"fake") GN_ARGS='chip_device_platform="fake"';;
"gcc_release") GN_ARGS='is_debug=false';;
"clang") GN_ARGS='is_clang=true';;
"mbedtls") GN_ARGS='chip_crypto="mbedtls"';;
Expand Down

0 comments on commit 1def928

Please sign in to comment.