build: revert removal of CIPD patch from depot tools (#42500)
Revert "build: remove the CIPD patch from depot tools (#42484)"
This reverts commit a0a8bd2222
.
This commit is contained in:
parent
422511753f
commit
8650682c5b
6 changed files with 48 additions and 0 deletions
|
@ -253,6 +253,25 @@ step-depot-tools-get: &step-depot-tools-get
|
||||||
sed -i '' '/ninjalog_uploader_wrapper.py/d' ./depot_tools/autoninja
|
sed -i '' '/ninjalog_uploader_wrapper.py/d' ./depot_tools/autoninja
|
||||||
else
|
else
|
||||||
sed -i '/ninjalog_uploader_wrapper.py/d' ./depot_tools/autoninja
|
sed -i '/ninjalog_uploader_wrapper.py/d' ./depot_tools/autoninja
|
||||||
|
# Remove swift-format dep from cipd on macOS until we send a patch upstream.
|
||||||
|
cd depot_tools
|
||||||
|
cat > gclient.diff \<< 'EOF'
|
||||||
|
diff --git a/gclient.py b/gclient.py
|
||||||
|
index c305c248..e6e0fbdc 100755
|
||||||
|
--- a/gclient.py
|
||||||
|
+++ b/gclient.py
|
||||||
|
@@ -783,7 +783,8 @@ class Dependency(gclient_utils.WorkItem, DependencySettings):
|
||||||
|
not condition or "non_git_source" not in condition):
|
||||||
|
continue
|
||||||
|
cipd_root = self.GetCipdRoot()
|
||||||
|
- for package in dep_value.get('packages', []):
|
||||||
|
+ packages = dep_value.get('packages', [])
|
||||||
|
+ for package in (x for x in packages if "infra/3pp/tools/swift-format" not in x.get('package')):
|
||||||
|
deps_to_add.append(
|
||||||
|
CipdDependency(parent=self,
|
||||||
|
name=name,
|
||||||
|
EOF
|
||||||
|
git apply --3way gclient.diff
|
||||||
fi
|
fi
|
||||||
# Ensure depot_tools does not update.
|
# Ensure depot_tools does not update.
|
||||||
test -d depot_tools && cd depot_tools
|
test -d depot_tools && cd depot_tools
|
||||||
|
|
5
.github/actions/checkout/action.yml
vendored
5
.github/actions/checkout/action.yml
vendored
|
@ -21,7 +21,12 @@ runs:
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
git clone --depth=1 https://chromium.googlesource.com/chromium/tools/depot_tools.git
|
git clone --depth=1 https://chromium.googlesource.com/chromium/tools/depot_tools.git
|
||||||
|
|
||||||
sed -i '/ninjalog_uploader_wrapper.py/d' ./depot_tools/autoninja
|
sed -i '/ninjalog_uploader_wrapper.py/d' ./depot_tools/autoninja
|
||||||
|
# Remove swift-format dep from cipd on macOS until we send a patch upstream.
|
||||||
|
cd depot_tools
|
||||||
|
git apply --3way ../src/electron/.github/workflows/config/gclient.diff
|
||||||
|
|
||||||
# Ensure depot_tools does not update.
|
# Ensure depot_tools does not update.
|
||||||
test -d depot_tools && cd depot_tools
|
test -d depot_tools && cd depot_tools
|
||||||
touch .disable_auto_update
|
touch .disable_auto_update
|
||||||
|
|
14
.github/workflows/config/gclient.diff
vendored
Normal file
14
.github/workflows/config/gclient.diff
vendored
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
diff --git a/gclient.py b/gclient.py
|
||||||
|
index 59e2b4c5197928bdba1ef69bdbe637d7dfe471c1..b4bae5e48c83c84bd867187afaf40eed16e69851 100755
|
||||||
|
--- a/gclient.py
|
||||||
|
+++ b/gclient.py
|
||||||
|
@@ -783,7 +783,8 @@ class Dependency(gclient_utils.WorkItem, DependencySettings):
|
||||||
|
not condition or "non_git_source" not in condition):
|
||||||
|
continue
|
||||||
|
cipd_root = self.GetCipdRoot()
|
||||||
|
- for package in dep_value.get('packages', []):
|
||||||
|
+ packages = dep_value.get('packages', [])
|
||||||
|
+ for package in (x for x in packages if "infra/3pp/tools/swift-format" not in x.get('package')):
|
||||||
|
deps_to_add.append(
|
||||||
|
CipdDependency(parent=self,
|
||||||
|
name=name,
|
|
@ -112,6 +112,9 @@ jobs:
|
||||||
|
|
||||||
# Ensure depot_tools does not update.
|
# Ensure depot_tools does not update.
|
||||||
test -d depot_tools && cd depot_tools
|
test -d depot_tools && cd depot_tools
|
||||||
|
if [ "`uname`" = "Linux" ]; then
|
||||||
|
git apply --3way ../src/electron/.github/workflows/config/gclient.diff
|
||||||
|
fi
|
||||||
touch .disable_auto_update
|
touch .disable_auto_update
|
||||||
- name: Add Depot Tools to PATH
|
- name: Add Depot Tools to PATH
|
||||||
run: echo "$(pwd)/depot_tools" >> $GITHUB_PATH
|
run: echo "$(pwd)/depot_tools" >> $GITHUB_PATH
|
||||||
|
|
|
@ -70,6 +70,9 @@ jobs:
|
||||||
sed -i '' '/ninjalog_uploader_wrapper.py/d' ./depot_tools/autoninja
|
sed -i '' '/ninjalog_uploader_wrapper.py/d' ./depot_tools/autoninja
|
||||||
else
|
else
|
||||||
sed -i '/ninjalog_uploader_wrapper.py/d' ./depot_tools/autoninja
|
sed -i '/ninjalog_uploader_wrapper.py/d' ./depot_tools/autoninja
|
||||||
|
# Remove swift-format dep from cipd on macOS until we send a patch upstream.
|
||||||
|
cd depot_tools
|
||||||
|
git apply --3way ../src/electron/.github/workflows/config/gclient.diff
|
||||||
fi
|
fi
|
||||||
# Ensure depot_tools does not update.
|
# Ensure depot_tools does not update.
|
||||||
test -d depot_tools && cd depot_tools
|
test -d depot_tools && cd depot_tools
|
||||||
|
|
|
@ -64,6 +64,8 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
git clone --depth=1 https://chromium.googlesource.com/chromium/tools/depot_tools.git
|
git clone --depth=1 https://chromium.googlesource.com/chromium/tools/depot_tools.git
|
||||||
sed -i '/ninjalog_uploader_wrapper.py/d' ./depot_tools/autoninja
|
sed -i '/ninjalog_uploader_wrapper.py/d' ./depot_tools/autoninja
|
||||||
|
cd depot_tools
|
||||||
|
git apply --3way ../src/electron/.github/workflows/config/gclient.diff
|
||||||
# Ensure depot_tools does not update.
|
# Ensure depot_tools does not update.
|
||||||
test -d depot_tools && cd depot_tools
|
test -d depot_tools && cd depot_tools
|
||||||
touch .disable_auto_update
|
touch .disable_auto_update
|
||||||
|
@ -127,6 +129,8 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
git clone --depth=1 https://chromium.googlesource.com/chromium/tools/depot_tools.git
|
git clone --depth=1 https://chromium.googlesource.com/chromium/tools/depot_tools.git
|
||||||
sed -i '/ninjalog_uploader_wrapper.py/d' ./depot_tools/autoninja
|
sed -i '/ninjalog_uploader_wrapper.py/d' ./depot_tools/autoninja
|
||||||
|
cd depot_tools
|
||||||
|
git apply --3way ../src/electron/.github/workflows/config/gclient.diff
|
||||||
# Ensure depot_tools does not update.
|
# Ensure depot_tools does not update.
|
||||||
test -d depot_tools && cd depot_tools
|
test -d depot_tools && cd depot_tools
|
||||||
touch .disable_auto_update
|
touch .disable_auto_update
|
||||||
|
|
Loading…
Reference in a new issue