Skip to content

Commit 1aea745

Browse files
authored
Merge pull request #13537 from ethereum/evmc-buildpack
Upgrade to evmone 0.9.1 and hera 0.6.0 in buildpack
2 parents 73e7b84 + c50f190 commit 1aea745

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

scripts/docker/buildpack-deps/Dockerfile.ubuntu1604.clang.ossfuzz

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# (c) 2016-2021 solidity contributors.
2323
#------------------------------------------------------------------------------
2424
FROM gcr.io/oss-fuzz-base/base-clang:latest as base
25-
LABEL version="19"
25+
LABEL version="20"
2626

2727
ARG DEBIAN_FRONTEND=noninteractive
2828

@@ -93,7 +93,7 @@ RUN set -ex; \
9393
# EVMONE
9494
RUN set -ex; \
9595
cd /usr/src; \
96-
git clone --branch="v0.8.2" --recurse-submodules https://github.com/ethereum/evmone.git; \
96+
git clone --branch="v0.9.1" --recurse-submodules https://github.com/ethereum/evmone.git; \
9797
cd evmone; \
9898
mkdir build; \
9999
cd build; \

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="14"
25+
LABEL version="15"
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.8.0" --recurse-submodules https://github.com/ethereum/evmone.git; \
51+
git clone --branch="v0.9.1" --recurse-submodules https://github.com/ethereum/evmone.git; \
5252
cd evmone; \
5353
mkdir build; \
5454
cd build; \
@@ -60,7 +60,7 @@ RUN set -ex; \
6060
# HERA
6161
RUN set -ex; \
6262
cd /usr/src; \
63-
git clone --branch="v0.5.0" --depth 1 --recurse-submodules https://github.com/ewasm/hera.git; \
63+
git clone --branch="v0.6.0" --depth 1 --recurse-submodules https://github.com/ewasm/hera.git; \
6464
cd hera; \
6565
mkdir build; \
6666
cd build; \

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

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="14"
25+
LABEL version="15"
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.8.0" --recurse-submodules https://github.com/ethereum/evmone.git; \
53+
git clone --branch="v0.9.1" --recurse-submodules https://github.com/ethereum/evmone.git; \
5454
cd evmone; \
5555
mkdir build; \
5656
cd build; \
@@ -62,7 +62,7 @@ RUN set -ex; \
6262
# HERA
6363
RUN set -ex; \
6464
cd /usr/src; \
65-
git clone --branch="v0.5.0" --depth 1 --recurse-submodules https://github.com/ewasm/hera.git; \
65+
git clone --branch="v0.6.0" --depth 1 --recurse-submodules https://github.com/ewasm/hera.git; \
6666
cd hera; \
6767
mkdir build; \
6868
cd build; \

0 commit comments

Comments
 (0)