Skip to content

Commit 1207911

Browse files
andy31415pull[bot]
authored andcommitted
[cloudbuild] Fix CHEF builds for esp32. (#28295)
Adds the workaround for gdbgui for chef builds as well. Chef failures were missed because we had a 'keep going' flag to builds. Removed that one as we should actually fix errors not ignore them.
1 parent 536c496 commit 1207911

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

integrations/cloudbuild/chef.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ steps:
1616
env:
1717
- PW_ENVIRONMENT_ROOT=/pwenv
1818
args:
19-
- ./examples/chef/chef.py --build_all --keep_going --build_exclude
20-
noip
19+
- >-
20+
perl -i -pe 's/^gdbgui==/# gdbgui==/' /opt/espressif/esp-idf/requirements.txt &&
21+
./examples/chef/chef.py --build_all --build_exclude noip
2122
id: CompileAll
2223
waitFor:
2324
- Bootstrap
@@ -30,7 +31,7 @@ steps:
3031
env:
3132
- PW_ENVIRONMENT_ROOT=/pwenv
3233
args:
33-
- ./examples/chef/chef.py --build_all --keep_going --build_include
34+
- ./examples/chef/chef.py --build_all --build_include
3435
linux_arm64_ipv6only.*noip
3536
id: CompileNoip
3637
waitFor:

0 commit comments

Comments
 (0)