diff options
| author | kennytm <kennytm@gmail.com> | 2017-05-21 19:29:42 +0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2017-06-02 01:14:26 +0800 |
| commit | 1222b7a9d1d30e680aad263c16cb0b09c2675e7b (patch) | |
| tree | e6bc63fa7c9966c5a34651f62a6792171caf1eac | |
| parent | e6e5dc0e9c1d5f9058e61c1abcfa3c5eae5f4191 (diff) | |
| download | rust-1222b7a9d1d30e680aad263c16cb0b09c2675e7b.tar.gz rust-1222b7a9d1d30e680aad263c16cb0b09c2675e7b.zip | |
Change .travis.yml's `language: minimal` to `generic`.
There is no `minimal` language. Due to travis-ci/travis-ci#4895, it will fallback to `ruby`, which certainly isn't what we want. `generic` is an undocumented (travis-ci/docs-travis-ci-com#910) language that serves the desired purpose.
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index b3db18dfbe4..9ef759b3f80 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,4 @@ -language: minimal +language: generic sudo: required dist: trusty services: |
