Skip to content

Commit

Permalink
Fix for scripts/build test failure (#8499)
Browse files Browse the repository at this point in the history
  • Loading branch information
sweetymhaiske authored Jul 20, 2021
1 parent 32c1393 commit c1fbb49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,10 @@ if (current_toolchain != "${dir_pw_toolchain}/default:default") {

group("check") {
if (chip_link_tests) {
deps = [ "//src:tests_run" ]
deps = [
"//scripts/build:build_examples.tests",
"//src:tests_run",
]
}
}

Expand Down
4 changes: 2 additions & 2 deletions scripts/build/expected_all_platform_commands.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cd -

# Generating esp32-devkitc-all_clusters
cd "{root}"
bash -c 'source $IDF_PATH/export.sh; idf.py -D SDKCONFIG_DEFAULTS='"'"'sdkconfig_devkit.defaults'"'"' -C examples/all-clusters-app/esp32 -B {out}/esp32-devkitc-all_clusters reconfigure'
bash -c 'source $IDF_PATH/export.sh; idf.py -D SDKCONFIG_DEFAULTS='"'"'sdkconfig.defaults'"'"' -C examples/all-clusters-app/esp32 -B {out}/esp32-devkitc-all_clusters reconfigure'
cd -

# Generating esp32-devkitc-lock
Expand Down Expand Up @@ -50,7 +50,7 @@ bash -c 'source $IDF_PATH/export.sh; ninja -C '"'"'{out}/esp32-m5stack-all_clust

# Generating esp32-devkitc-all_clusters
cd "{root}"
bash -c 'source $IDF_PATH/export.sh; idf.py -D SDKCONFIG_DEFAULTS='"'"'sdkconfig_devkit.defaults'"'"' -C examples/all-clusters-app/esp32 -B {out}/esp32-devkitc-all_clusters reconfigure'
bash -c 'source $IDF_PATH/export.sh; idf.py -D SDKCONFIG_DEFAULTS='"'"'sdkconfig.defaults'"'"' -C examples/all-clusters-app/esp32 -B {out}/esp32-devkitc-all_clusters reconfigure'
cd -

# Building esp32-devkitc-all_clusters
Expand Down

0 comments on commit c1fbb49

Please sign in to comment.