Skip to content

Commit

Permalink
tools/ci.sh: For code size build, fetch history of master branch only.
Browse files Browse the repository at this point in the history
It's not necessary to fetch all branches.

Signed-off-by: Damien George <damien@micropython.org>
  • Loading branch information
dpgeorge committed Jan 24, 2021
1 parent 0a07915 commit 203e1d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ci.sh
Expand Up @@ -42,7 +42,7 @@ function ci_code_size_build {
# starts off at either the ref/pull/N/merge FETCH_HEAD, or the current branch HEAD
git checkout -b pull_request # save the current location
git remote add upstream https://github.com/micropython/micropython.git
git fetch --depth=100 upstream
git fetch --depth=100 upstream master
# build reference, save to size0
# ignore any errors with this build, in case master is failing
git checkout `git merge-base --fork-point upstream/master pull_request`
Expand Down

0 comments on commit 203e1d2

Please sign in to comment.