mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
CI: configure dotnet via docker
This commit is contained in:
parent
44e21d9948
commit
5bc7a5d673
|
@ -86,13 +86,6 @@ matrix:
|
||||||
# Note: Apple Clang does not support OpenMP
|
# Note: Apple Clang does not support OpenMP
|
||||||
env: Z3_BUILD_TYPE=RelWithDebInfo USE_OPENMP=0 DOTNET_BINDINGS=0
|
env: Z3_BUILD_TYPE=RelWithDebInfo USE_OPENMP=0 DOTNET_BINDINGS=0
|
||||||
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- language: csharp
|
|
||||||
dotnet: 2.1.4
|
|
||||||
script:
|
|
||||||
# Add at least one dotnet command invocation to activate the build env.
|
|
||||||
- dotnet restore
|
|
||||||
script:
|
script:
|
||||||
# Use `travis_wait` when doing LTO builds because this configuration will
|
# Use `travis_wait` when doing LTO builds because this configuration will
|
||||||
# have long link times during which it will not show any output which
|
# have long link times during which it will not show any output which
|
||||||
|
|
|
@ -32,7 +32,6 @@ RUN apt-get update && \
|
||||||
libomp-dev \
|
libomp-dev \
|
||||||
llvm-3.9 \
|
llvm-3.9 \
|
||||||
make \
|
make \
|
||||||
mono-devel \
|
|
||||||
ninja-build \
|
ninja-build \
|
||||||
python3 \
|
python3 \
|
||||||
python3-setuptools \
|
python3-setuptools \
|
||||||
|
@ -48,4 +47,6 @@ RUN useradd -m user && \
|
||||||
echo 'user ALL=(root) NOPASSWD: ALL' >> /etc/sudoers
|
echo 'user ALL=(root) NOPASSWD: ALL' >> /etc/sudoers
|
||||||
USER user
|
USER user
|
||||||
WORKDIR /home/user
|
WORKDIR /home/user
|
||||||
ENV ASAN_SYMBOLIZER_PATH=/usr/lib/llvm-3.9/bin/llvm-symbolizer
|
# TODO .NET core does not support Linux x86 yet, disable it for now.
|
||||||
|
# see: https://github.com/dotnet/coreclr/issues/9265
|
||||||
|
ENV ASAN_SYMBOLIZER_PATH=/usr/lib/llvm-3.9/bin/llvm-symbolizer DOTNET_BINDINGS=0
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
FROM ubuntu:14.04
|
FROM ubuntu:14.04
|
||||||
|
|
||||||
|
RUN wget -q https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb && \
|
||||||
|
dpkg -i packages-microsoft-prod.deb && \
|
||||||
|
apt-get install apt-transport-https
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get -y --no-install-recommends install \
|
apt-get -y --no-install-recommends install \
|
||||||
binutils \
|
binutils \
|
||||||
|
@ -18,12 +22,12 @@ RUN apt-get update && \
|
||||||
lib32gomp1 \
|
lib32gomp1 \
|
||||||
llvm-3.9 \
|
llvm-3.9 \
|
||||||
make \
|
make \
|
||||||
mono-devel \
|
|
||||||
ninja-build \
|
ninja-build \
|
||||||
python3 \
|
python3 \
|
||||||
python3-setuptools \
|
python3-setuptools \
|
||||||
python2.7 \
|
python2.7 \
|
||||||
python-setuptools
|
python-setuptools \
|
||||||
|
dotnet-sdk-2.1
|
||||||
|
|
||||||
# Create `user` user for container with password `user`. and give it
|
# Create `user` user for container with password `user`. and give it
|
||||||
# password-less sudo access
|
# password-less sudo access
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
FROM ubuntu:16.04
|
FROM ubuntu:16.04
|
||||||
|
|
||||||
|
RUN wget -q https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb && \
|
||||||
|
dpkg -i packages-microsoft-prod.deb && \
|
||||||
|
apt-get install apt-transport-https
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get -y --no-install-recommends install \
|
apt-get -y --no-install-recommends install \
|
||||||
binutils \
|
binutils \
|
||||||
|
@ -20,13 +24,13 @@ RUN apt-get update && \
|
||||||
libomp-dev \
|
libomp-dev \
|
||||||
llvm-3.9 \
|
llvm-3.9 \
|
||||||
make \
|
make \
|
||||||
mono-devel \
|
|
||||||
ninja-build \
|
ninja-build \
|
||||||
python3 \
|
python3 \
|
||||||
python3-setuptools \
|
python3-setuptools \
|
||||||
python2.7 \
|
python2.7 \
|
||||||
python-setuptools \
|
python-setuptools \
|
||||||
sudo
|
sudo \
|
||||||
|
dotnet-sdk-2.1
|
||||||
|
|
||||||
# Create `user` user for container with password `user`. and give it
|
# Create `user` user for container with password `user`. and give it
|
||||||
# password-less sudo access
|
# password-less sudo access
|
||||||
|
|
Loading…
Reference in a new issue