Skip to content

Commit

Permalink
Re-enable rust clippy on its own shard
Browse files Browse the repository at this point in the history
Marked allow_failures because it may pick up transient breakages from nightly rust
  • Loading branch information
illicitonion committed Aug 30, 2018
1 parent 0258a07 commit 51d621f
Showing 1 changed file with 26 additions and 4 deletions.
30 changes: 26 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,10 +234,6 @@ matrix:
stage: Test Pants
language: python
python: "2.7.13"
addons:
apt:
packages:
- cmake
before_install:
- sudo apt-get install -y pkg-config fuse libfuse-dev
- sudo modprobe fuse
Expand Down Expand Up @@ -271,6 +267,32 @@ matrix:
script:
# Platform-specific tests currently need a pants pex, so we bootstrap here (no -b) and set -z to run the platform-specific tests.
- ./build-support/bin/ci.sh -ez

allow_failures:
- name: rust-clippy

jobs:
# Rust Clippy on Linux with nightly Rust
- name: rust-clippy
os: linux
dist: trusty
sudo: required
stage: Test Pants
language: python
python: "2.7.13"
before_install:
- sudo apt-get install -y pkg-config fuse libfuse-dev
- sudo modprobe fuse
- sudo chmod 666 /dev/fuse
- sudo chown root:$USER /etc/fuse.conf
env:
- SHARD="Rust Clippy on Linux with nightly Rust"
before_script:
- ulimit -c unlimited
- ulimit -n 8192
script:
- ./build-support/bin/ci.sh -bs

deploy:
# See: https://docs.travis-ci.com/user/deployment/s3/
provider: s3
Expand Down

0 comments on commit 51d621f

Please sign in to comment.