Skip to content

Commit

Permalink
ci: call autoninja without ninjalog_uploader_wrapper.py (#32574)
Browse files Browse the repository at this point in the history
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
  • Loading branch information
trop[bot] and jkleinsc committed Jan 21, 2022
1 parent 5a0b9d0 commit ea54e16
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .circleci/build_config.yml
Expand Up @@ -240,6 +240,12 @@ step-depot-tools-get: &step-depot-tools-get
name: Get depot tools
command: |
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
run:
Expand Down

0 comments on commit ea54e16

Please sign in to comment.