Skip to content

Commit

Permalink
Move the swap the tools test and cargotest within check-aux.
Browse files Browse the repository at this point in the history
The cargotest job is renamed to tools for clarification.
  • Loading branch information
kennytm committed Dec 3, 2017
1 parent 0bae745 commit 128199e
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -168,7 +168,7 @@ matrix:
if: branch = auto
- env: IMAGE=x86_64-gnu-aux
if: branch = auto
- env: IMAGE=x86_64-gnu-cargotest
- env: IMAGE=x86_64-gnu-tools
if: branch = auto
- env: IMAGE=x86_64-gnu-debug
if: branch = auto
Expand Down
9 changes: 7 additions & 2 deletions appveyor.yml
Expand Up @@ -25,9 +25,14 @@ environment:
RUST_CHECK_TARGET: check-aux
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc

# MSVC cargotest
# MSVC tools tests
- MSYS_BITS: 64
SCRIPT: python x.py test src/tools/cargotest
SCRIPT: >
python x.py test --no-fail-fast
src/tools/rls
src/tools/rustfmt
src/tools/miri
src/tools/clippy
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc

# 32/64-bit MinGW builds.
Expand Down
4 changes: 1 addition & 3 deletions src/bootstrap/mk/Makefile.in
Expand Up @@ -53,9 +53,7 @@ check:
check-aux:
$(Q)$(BOOTSTRAP) test \
src/tools/cargo \
src/tools/rls \
src/tools/rustfmt \
src/tools/miri \
src/tools/cargotest \
src/test/pretty \
src/test/run-pass/pretty \
src/test/run-fail/pretty \
Expand Down
6 changes: 5 additions & 1 deletion src/ci/docker/x86_64-gnu-aux/Dockerfile
Expand Up @@ -12,7 +12,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
libssl-dev \
sudo \
xz-utils \
pkg-config
pkg-config \
libgl1-mesa-dev \
llvm-dev \
libfreetype6-dev \
libexpat1-dev

COPY scripts/sccache.sh /scripts/
RUN sh /scripts/sccache.sh
Expand Down
Expand Up @@ -12,14 +12,14 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
libssl-dev \
sudo \
xz-utils \
pkg-config \
libgl1-mesa-dev \
llvm-dev \
libfreetype6-dev \
libexpat1-dev
pkg-config

COPY scripts/sccache.sh /scripts/
RUN sh /scripts/sccache.sh

ENV RUST_CONFIGURE_ARGS --build=x86_64-unknown-linux-gnu
ENV SCRIPT python2.7 ../x.py test src/tools/cargotest
ENV SCRIPT python2.7 ../x.py --no-fail-fast \
src/tools/rls \
src/tools/rustfmt \
src/tools/miri \
src/tools/clippy

0 comments on commit 128199e

Please sign in to comment.