Skip to content

Commit

Permalink
ci: use solc 0.8.6 in macos release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
d-xo committed Jul 1, 2021
1 parent a479bb0 commit 4fe19a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/install-solc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ fetch_solc_macos() {

if [ "$HOST_OS" = "Linux" ]; then
if [ "${SOLC_VER:-}" == "" ]; then
travis_retry fetch_solc_linux "0.6.12"
travis_retry fetch_solc_linux "0.8.6"
else
travis_retry fetch_solc_linux "$SOLC_VER"
fi
else
if [ "${SOLC_VER:-}" == "" ]; then
travis_retry fetch_solc_macos "0.6.12"
travis_retry fetch_solc_macos "0.8.6"
else
travis_retry fetch_solc_macos "$SOLC_VER"
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:$HOME/.local/lib"
export PATH="${PATH}:$HOME/.local/bin"
cp "$HOME/.local/bin/solc-0.6.12" "$HOME/.local/bin/solc"
cp "$HOME/.local/bin/solc-0.8.6" "$HOME/.local/bin/solc"
cd src/hevm && stack test --extra-include-dirs=$HOME/.local/include --extra-lib-dirs=$HOME/.local/lib && cd ../..
- name: Amend and compress binaries (macOS)
Expand Down

0 comments on commit 4fe19a0

Please sign in to comment.