mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
travis: dont hang when installing tzdata
This commit is contained in:
parent
3166685d94
commit
26c96e49cd
|
@ -1,5 +1,6 @@
|
||||||
FROM ubuntu:20.04
|
FROM ubuntu:20.04
|
||||||
|
|
||||||
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get -y --no-install-recommends install \
|
apt-get -y --no-install-recommends install \
|
||||||
cmake \
|
cmake \
|
||||||
|
@ -14,6 +15,7 @@ RUN apt-get update && \
|
||||||
graphviz \
|
graphviz \
|
||||||
python3 \
|
python3 \
|
||||||
python3-setuptools \
|
python3-setuptools \
|
||||||
|
python-is-python3 \
|
||||||
sudo
|
sudo
|
||||||
|
|
||||||
RUN curl -SL https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb --output packages-microsoft-prod.deb && \
|
RUN curl -SL https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb --output packages-microsoft-prod.deb && \
|
||||||
|
|
|
@ -23,7 +23,7 @@ if [ "X${ASAN_BUILD}" = "X1" ]; then
|
||||||
export ASAN_OPTIONS="${ASAN_OPTIONS},print_suppressions=0"
|
export ASAN_OPTIONS="${ASAN_OPTIONS},print_suppressions=0"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
: ${ASAN_SYMBOLIZER_PATH?"ASAN_SYMBOLIZER_PATH must be specified"}
|
#: ${ASAN_SYMBOLIZER_PATH?"ASAN_SYMBOLIZER_PATH must be specified"}
|
||||||
|
|
||||||
# Run command without checking for leaks
|
# Run command without checking for leaks
|
||||||
function run_no_lsan() {
|
function run_no_lsan() {
|
||||||
|
|
Loading…
Reference in a new issue