File tree Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Expand file tree Collapse file tree 4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -13,16 +13,16 @@ matrix:
13
13
include :
14
14
# Images used in testing PR and try-build should be run first.
15
15
- env : IMAGE=x86_64-gnu-llvm-3.9 RUST_BACKTRACE=1
16
- if : type = pull_request OR branch = auto
16
+ if : branch = auto
17
17
18
18
- env : IMAGE=dist-x86_64-linux DEPLOY=1
19
- if : branch = try OR branch = auto
19
+ if : branch = auto
20
20
21
21
# "alternate" deployments, these are "nightlies" but have LLVM assertions
22
22
# turned on, they're deployed to a different location primarily for
23
23
# additional testing.
24
24
- env : IMAGE=dist-x86_64-linux DEPLOY_ALT=1 CI_JOB_NAME=dist-x86_64-linux-alt
25
- if : branch = try OR branch = auto
25
+ if : branch = auto
26
26
27
27
- env : >
28
28
RUST_CHECK_TARGET=dist
@@ -177,7 +177,6 @@ matrix:
177
177
- env : IMAGE=x86_64-gnu-distcheck
178
178
if : branch = auto
179
179
- env : IMAGE=mingw-check
180
- if : type = pull_request OR branch = auto
181
180
182
181
- stage : publish toolstate
183
182
if : branch = master AND type = push
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
14
14
xz-utils \
15
15
libssl-dev \
16
16
pkg-config \
17
- mingw-w64
17
+ mingw-w64 \
18
+ dnsutils
18
19
19
20
COPY scripts/sccache.sh /scripts/
20
21
RUN sh /scripts/sccache.sh
Original file line number Diff line number Diff line change 119
119
args=" $args --privileged"
120
120
121
121
if [ " $CI " != " " ]; then
122
- args=" $args --dns 8.8.8.8 --dns 8.8.4.4 --dns 1.1.1.1 --dns 1.0.0.1 "
122
+ args=" $args --dns 1.1.1.1 --dns 1.0.0.1 --dns 8.8.8.8 --dns 8.8.4.4 "
123
123
fi
124
124
125
125
exec docker \
Original file line number Diff line number Diff line change 9
9
# option. This file may not be copied, modified, or distributed
10
10
# except according to those terms.
11
11
12
+ dig s3-us-west-1.amazonaws.com
13
+ dig @1.1.1.1 s3-us-west-1.amazonaws.com
14
+ dig @1.0.0.1 s3-us-west-1.amazonaws.com
15
+ dig @8.8.8.8 s3-us-west-1.amazonaws.com
16
+ dig @8.8.4.4 s3-us-west-1.amazonaws.com
17
+
12
18
set -e
13
19
14
20
if [ -n " $CI_JOB_NAME " ]; then
You can’t perform that action at this time.
0 commit comments