mirror of
https://github.com/Z3Prover/z3
synced 2025-04-04 08:39:57 +00:00
The Linux builds rely on Docker (using Ubuntu 16.04LTS and Ubuntu 14.04LTS) to build and test Z3 so that builds are easily reproducible. A build status button has been added to `README.md` so that it is easy to see the current build status. More documentation can be found in `contrib/ci/README.md`. This implementation currently tests 13 different configurations. If build times become too long we can remove some of them. Although it would be nice to test macOS builds that requires significantly more work so I have left this as future work.
51 lines
1.3 KiB
Docker
51 lines
1.3 KiB
Docker
# This base image is not officially supported by Docker it
|
|
# is generated by running
|
|
# ```
|
|
# ./update.sh xenial
|
|
# ```
|
|
# from git@github.com:daald/docker-brew-ubuntu-core-32bit.git
|
|
# at commit 34ea593b40b423755b7d46b6c8c89fc8162ea74b
|
|
#
|
|
# We could actually store the image generated by this Dockerfile
|
|
# rather than just the bare image. However given we have a TravisCI
|
|
# cache I'm not sure if it faster to use the TravisCI cache or to
|
|
# download from DockerHub everytime.
|
|
FROM z3prover/ubuntu32:16.04
|
|
|
|
RUN apt-get update && \
|
|
apt-get -y --no-install-recommends install \
|
|
binutils \
|
|
clang \
|
|
clang-3.9 \
|
|
cmake \
|
|
doxygen \
|
|
default-jdk \
|
|
gcc \
|
|
gcc-5 \
|
|
git \
|
|
graphviz \
|
|
g++ \
|
|
g++ \
|
|
libgmp-dev \
|
|
libgomp1 \
|
|
libomp5 \
|
|
libomp-dev \
|
|
make \
|
|
mono-devel \
|
|
ninja-build \
|
|
python3 \
|
|
python3-setuptools \
|
|
python2.7 \
|
|
python-setuptools \
|
|
sudo
|
|
|
|
# Create `user` user for container with password `user`. and give it
|
|
# password-less sudo access
|
|
RUN useradd -m user && \
|
|
echo user:user | chpasswd && \
|
|
cp /etc/sudoers /etc/sudoers.bak && \
|
|
echo 'user ALL=(root) NOPASSWD: ALL' >> /etc/sudoers
|
|
USER user
|
|
WORKDIR /home/user
|
|
|