Skip to content

Commit b028671

Browse files
author
Leo
authored
Merge pull request #13438 from ethereum/z3_4_11_0
Update z3 to 4.11.0 in the docker files
2 parents e048ba4 + cbcd8a7 commit b028671

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

scripts/docker/buildpack-deps/Dockerfile.emscripten

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

3838
ADD emscripten.jam /usr/src
3939
RUN set -ex && \
@@ -42,7 +42,7 @@ RUN set -ex && \
4242
apt-get install lz4 --no-install-recommends && \
4343
\
4444
cd /usr/src && \
45-
git clone https://github.com/Z3Prover/z3.git -b z3-4.8.17 --depth 1 && \
45+
git clone https://github.com/Z3Prover/z3.git -b z3-4.11.0 --depth 1 && \
4646
cd z3 && \
4747
mkdir build && \
4848
cd build && \

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="18"
25+
LABEL version="19"
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.17 https://github.com/Z3Prover/z3.git \
64+
git clone --depth 1 -b z3-4.11.0 https://github.com/Z3Prover/z3.git \
6565
/usr/src/z3; \
6666
cd /usr/src/z3; \
6767
mkdir build; \

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="13"
25+
LABEL version="14"
2626

2727
ARG DEBIAN_FRONTEND=noninteractive
2828

scripts/docker/buildpack-deps/Dockerfile.ubuntu2004.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:focal AS base
25-
LABEL version="13"
25+
LABEL version="14"
2626

2727
ARG DEBIAN_FRONTEND=noninteractive
2828

@@ -38,7 +38,7 @@ RUN set -ex; \
3838
libboost-filesystem-dev libboost-test-dev libboost-system-dev \
3939
libboost-program-options-dev \
4040
clang \
41-
libz3-static-dev jq \
41+
libz3-static-dev z3-static jq \
4242
; \
4343
rm -rf /var/lib/apt/lists/*
4444

0 commit comments

Comments
 (0)