Skip to content

Commit

Permalink
Merge pull request #3352 from pleroy/master
Browse files Browse the repository at this point in the history
Work around a tar bug on MacOS
  • Loading branch information
pleroy authored Apr 28, 2022
2 parents c2d3081 + 9c18c78 commit 8461c4e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions principia_make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,9 @@ elif [ "${AGENT_OS?}" == "Linux" ]; then
fi

make test
if [ "${AGENT_OS?}" == "Darwin" ]; then
# See https://github.com/actions/virtual-environments/issues/2619#issuecomment-788397841
# for why this is needed.
sudo /usr/sbin/purge
fi
make release

0 comments on commit 8461c4e

Please sign in to comment.