From 1081324356614126868217512c5e9ad819ca3342 Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Wed, 19 Jul 2023 13:10:13 -0400 Subject: [PATCH] Apply esp32 fix for cloudbuild as well (#28081) --- integrations/cloudbuild/build-all.yaml | 4 +++- integrations/cloudbuild/chef.yaml | 4 +++- integrations/cloudbuild/smoke-test.yaml | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/integrations/cloudbuild/build-all.yaml b/integrations/cloudbuild/build-all.yaml index 82031d7d8ca77c..8ccafdce073c6b 100644 --- a/integrations/cloudbuild/build-all.yaml +++ b/integrations/cloudbuild/build-all.yaml @@ -11,7 +11,9 @@ steps: - PW_ENVIRONMENT_ROOT=/pwenv args: - "-c" - - source ./scripts/bootstrap.sh + - | + perl -i -pe 's/^gdbgui==/# gdbgui==/' /opt/espressif/esp-idf/requirements.txt + source ./scripts/bootstrap.sh id: Bootstrap waitFor: - Submodules diff --git a/integrations/cloudbuild/chef.yaml b/integrations/cloudbuild/chef.yaml index 7e750750f5f76a..b9c675eb82f6aa 100644 --- a/integrations/cloudbuild/chef.yaml +++ b/integrations/cloudbuild/chef.yaml @@ -4,7 +4,9 @@ steps: - PW_ENVIRONMENT_ROOT=/pwenv args: - "-c" - - source ./scripts/bootstrap.sh + - | + perl -i -pe 's/^gdbgui==/# gdbgui==/' /opt/espressif/esp-idf/requirements.txt + source ./scripts/bootstrap.sh id: Bootstrap entrypoint: /usr/bin/bash volumes: diff --git a/integrations/cloudbuild/smoke-test.yaml b/integrations/cloudbuild/smoke-test.yaml index ea832591a1afa6..c0a69752081525 100644 --- a/integrations/cloudbuild/smoke-test.yaml +++ b/integrations/cloudbuild/smoke-test.yaml @@ -12,7 +12,9 @@ steps: - PW_ENVIRONMENT_ROOT=/pwenv args: - "-c" - - source ./scripts/bootstrap.sh + - | + perl -i -pe 's/^gdbgui==/# gdbgui==/' /opt/espressif/esp-idf/requirements.txt + source ./scripts/bootstrap.sh id: Bootstrap waitFor: - Submodules