Skip to content

Commit 26c96e4

Browse files
committed
travis: dont hang when installing tzdata
1 parent 3166685 commit 26c96e4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

contrib/ci/Dockerfiles/z3_base_ubuntu_20.04.Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
FROM ubuntu:20.04
22

3+
ARG DEBIAN_FRONTEND=noninteractive
34
RUN apt-get update && \
45
apt-get -y --no-install-recommends install \
56
cmake \
@@ -14,6 +15,7 @@ RUN apt-get update && \
1415
graphviz \
1516
python3 \
1617
python3-setuptools \
18+
python-is-python3 \
1719
sudo
1820

1921
RUN curl -SL https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb --output packages-microsoft-prod.deb && \

contrib/ci/scripts/sanitizer_env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if [ "X${ASAN_BUILD}" = "X1" ]; then
2323
export ASAN_OPTIONS="${ASAN_OPTIONS},print_suppressions=0"
2424
fi
2525

26-
: ${ASAN_SYMBOLIZER_PATH?"ASAN_SYMBOLIZER_PATH must be specified"}
26+
#: ${ASAN_SYMBOLIZER_PATH?"ASAN_SYMBOLIZER_PATH must be specified"}
2727

2828
# Run command without checking for leaks
2929
function run_no_lsan() {

0 commit comments

Comments
 (0)