Skip to content

Commit 33de26c

Browse files
committed
THRIFT-3635 D transport_test is flaky on Jenkins and Travis
Client: Test (D) Patch: Nobuaki Sukegawa This closes apache#883
1 parent 2303d97 commit 33de26c

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

build/docker/debian/Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -149,14 +149,12 @@ RUN apt-get update && apt-get install -y \
149149
mono-xbuild
150150

151151
# D dependencies
152-
# THRIFT-2916: DMD pinned to 2.065.0-0 due to regression in 2.066
153-
# THRIFT-3253: DMD pinned to 2.065.0-0 due to deprecations 2.067.1
154152
RUN apt-get update && apt-get install -y \
155153
gcc-multilib \
156154
xdg-utils \
157-
&& curl -sSL http://downloads.dlang.org/releases/2.x/2.065.0/dmd_2.065.0-0_amd64.deb -o /tmp/dmd_2.065.0-0_amd64.deb && \
158-
dpkg -i /tmp/dmd_2.065.0-0_amd64.deb && \
159-
rm /tmp/dmd_2.065.0-0_amd64.deb
155+
&& curl -sSL http://downloads.dlang.org/releases/2.x/2.070.0/dmd_2.070.0-0_amd64.deb -o /tmp/dmd_2.070.0-0_amd64.deb && \
156+
dpkg -i /tmp/dmd_2.070.0-0_amd64.deb && \
157+
rm /tmp/dmd_2.070.0-0_amd64.deb
160158

161159
# Dart dependencies
162160
RUN curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \

build/docker/ubuntu/Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,14 +151,12 @@ RUN apt-get update && apt-get install -y \
151151
mono-xbuild
152152

153153
# D dependencies
154-
# THRIFT-2916: DMD pinned to 2.065.0-0 due to regression in 2.066
155-
# THRIFT-3253: DMD pinned to 2.065.0-0 due to deprecations 2.067.1
156154
RUN apt-get update && apt-get install -y \
157155
gcc-multilib \
158156
xdg-utils \
159-
&& curl -sSL http://downloads.dlang.org/releases/2.x/2.065.0/dmd_2.065.0-0_amd64.deb -o /tmp/dmd_2.065.0-0_amd64.deb && \
160-
dpkg -i /tmp/dmd_2.065.0-0_amd64.deb && \
161-
rm /tmp/dmd_2.065.0-0_amd64.deb
157+
&& curl -sSL http://downloads.dlang.org/releases/2.x/2.070.0/dmd_2.070.0-0_amd64.deb -o /tmp/dmd_2.070.0-0_amd64.deb && \
158+
dpkg -i /tmp/dmd_2.070.0-0_amd64.deb && \
159+
rm /tmp/dmd_2.070.0-0_amd64.deb
162160

163161
# Dart dependencies
164162
RUN curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \

0 commit comments

Comments
 (0)