Skip to content

Commit 9160451

Browse files
committed
Bump evmone to 11
1 parent c53afae commit 9160451

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
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/docker/buildpack-deps/Dockerfile.ubuntu2004

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# (c) 2016-2019 solidity contributors.
2323
#------------------------------------------------------------------------------
2424
FROM buildpack-deps:focal AS base
25-
LABEL version="20"
25+
LABEL version="21"
2626

2727
ARG DEBIAN_FRONTEND=noninteractive
2828

@@ -47,8 +47,8 @@ FROM base AS libraries
4747

4848
# EVMONE
4949
RUN set -ex; \
50-
wget -O /usr/src/evmone.tar.gz https://github.com/ethereum/evmone/releases/download/v0.10.0/evmone-0.10.0-linux-x86_64.tar.gz; \
51-
test "$(sha256sum /usr/src/evmone.tar.gz)" = "6052b6a4eba6e81bb1bccfa9fec2caf220a25f5ff5c32c544984883ed95e6552 /usr/src/evmone.tar.gz"; \
50+
wget -O /usr/src/evmone.tar.gz https://github.com/ethereum/evmone/releases/download/v0.11.0/evmone-0.11.0-linux-x86_64.tar.gz; \
51+
test "$(sha256sum /usr/src/evmone.tar.gz)" = "051dbe523da165658ced63619ea2c05925516aac3061951da96d3f0962560719 /usr/src/evmone.tar.gz"; \
5252
cd /usr; \
5353
tar -xf /usr/src/evmone.tar.gz; \
5454
rm -rf /usr/src/evmone.tar.gz

scripts/docker/buildpack-deps/Dockerfile.ubuntu2204

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# (c) 2016-2019 solidity contributors.
2323
#------------------------------------------------------------------------------
2424
FROM buildpack-deps:jammy AS base
25-
LABEL version="5"
25+
LABEL version="6"
2626

2727
ARG DEBIAN_FRONTEND=noninteractive
2828

@@ -48,7 +48,7 @@ FROM base AS libraries
4848
# EVMONE
4949
RUN set -ex; \
5050
cd /usr/src; \
51-
git clone --branch="v0.10.0" --recurse-submodules https://github.com/ethereum/evmone.git; \
51+
git clone --branch="v0.11.0" --recurse-submodules https://github.com/ethereum/evmone.git; \
5252
cd evmone; \
5353
mkdir build; \
5454
cd build; \

scripts/docker/buildpack-deps/Dockerfile.ubuntu2204.clang

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# (c) 2016-2019 solidity contributors.
2323
#------------------------------------------------------------------------------
2424
FROM buildpack-deps:jammy AS base
25-
LABEL version="4"
25+
LABEL version="5"
2626

2727
ARG DEBIAN_FRONTEND=noninteractive
2828

@@ -50,7 +50,7 @@ ENV CXX clang++
5050
# EVMONE
5151
RUN set -ex; \
5252
cd /usr/src; \
53-
git clone --branch="v0.10.0" --recurse-submodules https://github.com/ethereum/evmone.git; \
53+
git clone --branch="v0.11.0" --recurse-submodules https://github.com/ethereum/evmone.git; \
5454
cd evmone; \
5555
mkdir build; \
5656
cd build; \

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)