File tree 5 files changed +20
-13
lines changed
5 files changed +20
-13
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ matrix:
168
168
if : branch = auto
169
169
- env : IMAGE=x86_64-gnu-aux
170
170
if : branch = auto
171
- - env : IMAGE=x86_64-gnu-cargotest
171
+ - env : IMAGE=x86_64-gnu-tools
172
172
if : branch = auto
173
173
- env : IMAGE=x86_64-gnu-debug
174
174
if : branch = auto
Original file line number Diff line number Diff line change @@ -25,9 +25,14 @@ environment:
25
25
RUST_CHECK_TARGET : check-aux
26
26
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc
27
27
28
- # MSVC cargotest
28
+ # MSVC tools tests
29
29
- MSYS_BITS : 64
30
- SCRIPT : python x.py test src/tools/cargotest
30
+ SCRIPT : >
31
+ python x.py test --no-fail-fast
32
+ src/tools/rls
33
+ src/tools/rustfmt
34
+ src/tools/miri
35
+ src/tools/clippy
31
36
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc
32
37
33
38
# 32/64-bit MinGW builds.
Original file line number Diff line number Diff line change 53
53
check-aux :
54
54
$(Q )$(BOOTSTRAP ) test \
55
55
src/tools/cargo \
56
- src/tools/rls \
57
- src/tools/rustfmt \
58
- src/tools/miri \
56
+ src/tools/cargotest \
59
57
src/test/pretty \
60
58
src/test/run-pass/pretty \
61
59
src/test/run-fail/pretty \
Original file line number Diff line number Diff line change @@ -12,7 +12,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
12
12
libssl-dev \
13
13
sudo \
14
14
xz-utils \
15
- pkg-config
15
+ pkg-config \
16
+ libgl1-mesa-dev \
17
+ llvm-dev \
18
+ libfreetype6-dev \
19
+ libexpat1-dev
16
20
17
21
COPY scripts/sccache.sh /scripts/
18
22
RUN sh /scripts/sccache.sh
Original file line number Diff line number Diff line change @@ -12,14 +12,14 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
12
12
libssl-dev \
13
13
sudo \
14
14
xz-utils \
15
- pkg-config \
16
- libgl1-mesa-dev \
17
- llvm-dev \
18
- libfreetype6-dev \
19
- libexpat1-dev
15
+ pkg-config
20
16
21
17
COPY scripts/sccache.sh /scripts/
22
18
RUN sh /scripts/sccache.sh
23
19
24
20
ENV RUST_CONFIGURE_ARGS --build=x86_64-unknown-linux-gnu
25
- ENV SCRIPT python2.7 ../x.py test src/tools/cargotest
21
+ ENV SCRIPT python2.7 ../x.py --no-fail-fast \
22
+ src/tools/rls \
23
+ src/tools/rustfmt \
24
+ src/tools/miri \
25
+ src/tools/clippy
You can’t perform that action at this time.
0 commit comments