Skip to content

Commit 8fb37d4

Browse files
nikola-maticcameel
authored andcommitted
Bump evmone to 11 in CI
1 parent 567e8cc commit 8fb37d4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.circleci/osx_install_dependencies.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ then
7676
rm -r "$z3_dir"
7777

7878
# evmone
79-
evmone_version="0.10.0"
79+
evmone_version="0.11.0"
8080
evmone_package="evmone-${evmone_version}-darwin-x86_64.tar.gz"
8181
wget "https://github.com/ethereum/evmone/releases/download/v${evmone_version}/${evmone_package}"
82-
validate_checksum "$evmone_package" 1b7773779287d7908baca6b8d556a98800cbd7d6e5c910b55fa507642bc0a15c
82+
validate_checksum "$evmone_package" 83ed20676681d9a31bd30cac399ab7c615ccab8adb8087cc2c7e9cd22b4d2efc
8383
tar xzpf "$evmone_package" -C /usr/local
8484
rm "$evmone_package"
8585

scripts/install_evmone.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ $ErrorActionPreference = "Stop"
33
# Needed for Invoke-WebRequest to work via CI.
44
$progressPreference = "silentlyContinue"
55

6-
Invoke-WebRequest -URI "https://github.com/ethereum/evmone/releases/download/v0.10.0/evmone-0.10.0-windows-amd64.zip" -OutFile "evmone.zip"
6+
Invoke-WebRequest -URI "https://github.com/ethereum/evmone/releases/download/v0.11.0/evmone-0.11.0-windows-amd64.zip" -OutFile "evmone.zip"
77
tar -xf evmone.zip "bin/evmone.dll"
88
mkdir deps
99
mv bin/evmone.dll deps

test/Common.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ namespace solidity::test
3333

3434
#ifdef _WIN32
3535
static constexpr auto evmoneFilename = "evmone.dll";
36-
static constexpr auto evmoneDownloadLink = "https://github.com/ethereum/evmone/releases/download/v0.10.0/evmone-0.10.0-windows-amd64.zip";
36+
static constexpr auto evmoneDownloadLink = "https://github.com/ethereum/evmone/releases/download/v0.11.0/evmone-0.11.0-windows-amd64.zip";
3737
#elif defined(__APPLE__)
3838
static constexpr auto evmoneFilename = "libevmone.dylib";
39-
static constexpr auto evmoneDownloadLink = "https://github.com/ethereum/evmone/releases/download/v0.10.0/evmone-0.10.0-darwin-x86_64.tar.gz";
39+
static constexpr auto evmoneDownloadLink = "https://github.com/ethereum/evmone/releases/download/v0.11.0/evmone-0.11.0-darwin-x86_64.tar.gz";
4040
#else
4141
static constexpr auto evmoneFilename = "libevmone.so";
42-
static constexpr auto evmoneDownloadLink = "https://github.com/ethereum/evmone/releases/download/v0.10.0/evmone-0.10.0-linux-x86_64.tar.gz";
42+
static constexpr auto evmoneDownloadLink = "https://github.com/ethereum/evmone/releases/download/v0.11.0/evmone-0.11.0-linux-x86_64.tar.gz";
4343
#endif
4444

4545
struct ConfigException: public util::Exception {};

0 commit comments

Comments
 (0)