From 4fe19a0ff493f09de58c13c54cb69d962dd10b82 Mon Sep 17 00:00:00 2001 From: David Terry Date: Thu, 1 Jul 2021 19:08:19 +0200 Subject: [PATCH] ci: use solc 0.8.6 in macos release pipeline --- .github/scripts/install-solc.sh | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/scripts/install-solc.sh b/.github/scripts/install-solc.sh index 4eaa527ff..998452937 100755 --- a/.github/scripts/install-solc.sh +++ b/.github/scripts/install-solc.sh @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c0948d7e0..9d46c1b15 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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)