Skip to content

Commit

Permalink
Remove linux clang_experimental build (#7467)
Browse files Browse the repository at this point in the history
As of 80120a20 ("[im] Always use interaction model to send commands
(#5945)"), this build is equivalent to the clang build. Add
--fail-on-unused-args to gn_gen.sh to avoid this happening again.
  • Loading branch information
mspang authored Jun 9, 2021
1 parent 77e727c commit 9488c1a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ jobs:
"gcc_release") GN_ARGS='is_debug=false';;
"clang") GN_ARGS='is_clang=true';;
"mbedtls") GN_ARGS='chip_crypto="mbedtls"';;
"clang_experimental") GN_ARGS='is_clang=true chip_enable_interaction_model=true';;
*) ;;
esac
Expand Down
2 changes: 1 addition & 1 deletion scripts/build/gn_gen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ set -x

env

gn --root="$CHIP_ROOT" gen --check "$CHIP_ROOT/out/$BUILD_TYPE" "$@"
gn --root="$CHIP_ROOT" gen --check --fail-on-unused-args "$CHIP_ROOT/out/$BUILD_TYPE" "$@"

0 comments on commit 9488c1a

Please sign in to comment.