File tree 4 files changed +27
-1
lines changed
ci/docker/x86_64-gnu-cargotest
4 files changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -117,6 +117,7 @@ matrix:
117
117
- env : IMAGE=x86_64-gnu
118
118
- env : IMAGE=x86_64-gnu-full-bootstrap
119
119
- env : IMAGE=x86_64-gnu-aux
120
+ - env : IMAGE=x86_64-gnu-cargotest
120
121
- env : IMAGE=x86_64-gnu-debug
121
122
- env : IMAGE=x86_64-gnu-nopt
122
123
- env : IMAGE=x86_64-gnu-distcheck
Original file line number Diff line number Diff line change @@ -24,6 +24,11 @@ environment:
24
24
RUST_CHECK_TARGET : check-aux
25
25
RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc
26
26
27
+ # MSVC cargotest
28
+ - MSYS_BITS : 64
29
+ SCRIPT : python x.py src/tools/cargotest
30
+ RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc
31
+
27
32
# 32/64-bit MinGW builds.
28
33
#
29
34
# We are using MinGW with posix threads since LLVM does not compile with
Original file line number Diff line number Diff line change 52
52
$(Q )$(BOOTSTRAP ) test $(BOOTSTRAP_ARGS )
53
53
check-aux :
54
54
$(Q )$(BOOTSTRAP ) test \
55
- src/tools/cargotest \
56
55
src/tools/cargo \
57
56
src/tools/rls \
58
57
src/test/pretty \
Original file line number Diff line number Diff line change
1
+ FROM ubuntu:16.04
2
+
3
+ RUN apt-get update && apt-get install -y --no-install-recommends \
4
+ g++ \
5
+ make \
6
+ file \
7
+ curl \
8
+ ca-certificates \
9
+ python2.7 \
10
+ git \
11
+ cmake \
12
+ libssl-dev \
13
+ sudo \
14
+ xz-utils \
15
+ pkg-config
16
+
17
+ COPY scripts/sccache.sh /scripts/
18
+ RUN sh /scripts/sccache.sh
19
+
20
+ ENV RUST_CONFIGURE_ARGS --build=x86_64-unknown-linux-gnu
21
+ ENV SCRIPT python2.7 ../x.py test src/tools/cargotest
You can’t perform that action at this time.
0 commit comments