Skip to content

Commit e0c85c6

Browse files
authored
Merge pull request #12312 from ethereum/update_docker_z3
Bump z3 version to 4.8.13 in our docker files
2 parents 2364d8f + 1c8d430 commit e0c85c6

File tree

4 files changed

+6
-18
lines changed

4 files changed

+6
-18
lines changed

scripts/docker/buildpack-deps/Dockerfile.emscripten

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
# Using $(em-config CACHE)/sysroot/usr seems to work, though, and still has cmake find the
3434
# dependencies automatically.
3535
FROM emscripten/emsdk:2.0.33 AS base
36-
LABEL version="7"
36+
LABEL version="8"
3737

3838
ADD emscripten.jam /usr/src
3939
RUN set -ex; \
4040
cd /usr/src; \
41-
git clone https://github.com/Z3Prover/z3.git -b z3-4.8.12 --depth 1 ; \
41+
git clone https://github.com/Z3Prover/z3.git -b z3-4.8.13 --depth 1 ; \
4242
cd z3; \
4343
mkdir build; \
4444
cd build; \

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

Lines changed: 2 additions & 14 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="13"
25+
LABEL version="14"
2626

2727
ARG DEBIAN_FRONTEND=noninteractive
2828

@@ -61,7 +61,7 @@ RUN set -ex; \
6161

6262
# Z3
6363
RUN set -ex; \
64-
git clone --depth 1 -b z3-4.8.12 https://github.com/Z3Prover/z3.git \
64+
git clone --depth 1 -b z3-4.8.13 https://github.com/Z3Prover/z3.git \
6565
/usr/src/z3; \
6666
cd /usr/src/z3; \
6767
mkdir build; \
@@ -102,18 +102,6 @@ RUN set -ex; \
102102
ninja install/strip; \
103103
rm -rf /usr/src/evmone
104104

105-
# HERA
106-
RUN set -ex; \
107-
cd /usr/src; \
108-
git clone --branch="v0.5.0" --depth 1 --recurse-submodules https://github.com/ewasm/hera.git; \
109-
cd hera; \
110-
mkdir build; \
111-
cd build; \
112-
cmake -G Ninja -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX="/usr" ..; \
113-
ninja; \
114-
ninja install/strip; \
115-
rm -rf /usr/src/hera
116-
117105
# gmp
118106
RUN set -ex; \
119107
# Replace system installed libgmp static library

scripts/docker/buildpack-deps/Dockerfile.ubuntu2004

Lines changed: 1 addition & 1 deletion
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="8"
25+
LABEL version="9"
2626

2727
ARG DEBIAN_FRONTEND=noninteractive
2828

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

Lines changed: 1 addition & 1 deletion
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="8"
25+
LABEL version="9"
2626

2727
ARG DEBIAN_FRONTEND=noninteractive
2828

0 commit comments

Comments
 (0)