Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: fix linux release builds on CircleCI #18201

Merged
merged 1 commit into from May 8, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 5 additions & 2 deletions .circleci/config.yml
Expand Up @@ -189,8 +189,11 @@ step-get-more-space-on-mac: &step-get-more-space-on-mac

step-delete-git-directories: &step-delete-git-directories
run:
name: Delete src/.git directory
command: sudo rm -rf src/.git
name: Delete src/.git directory on MacOS to free space
command: |
if [ "`uname`" == "Darwin" ]; then
sudo rm -rf src/.git
fi

# On macOS the npm install command during gclient sync was run on a linux
# machine and therefore installed a slightly different set of dependencies
Expand Down