ci: call autoninja without ninjalog_uploader_wrapper.py (#32569)
This commit is contained in:
parent
87b3f6db9d
commit
6fb013fc10
1 changed files with 6 additions and 0 deletions
|
@ -240,6 +240,12 @@ step-depot-tools-get: &step-depot-tools-get
|
||||||
name: Get depot tools
|
name: Get depot tools
|
||||||
command: |
|
command: |
|
||||||
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
|
||||||
|
# remove ninjalog_uploader_wrapper.py from autoninja since we don't use it and it causes problems
|
||||||
|
if [ "`uname`" == "Darwin" ]; then
|
||||||
|
sed -i '' '/ninjalog_uploader_wrapper.py/d' ./depot_tools/autoninja
|
||||||
|
else
|
||||||
|
sed -i '/ninjalog_uploader_wrapper.py/d' ./depot_tools/autoninja
|
||||||
|
fi
|
||||||
|
|
||||||
step-depot-tools-add-to-path: &step-depot-tools-add-to-path
|
step-depot-tools-add-to-path: &step-depot-tools-add-to-path
|
||||||
run:
|
run:
|
||||||
|
|
Loading…
Reference in a new issue