mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-07-26 09:42:00 -07:00
expand Rust versions we test on.
This commit is contained in:
43
.travis.yml
43
.travis.yml
@@ -1,16 +1,3 @@
|
|||||||
#language: rust
|
|
||||||
#rust:
|
|
||||||
# - stable
|
|
||||||
# - beta
|
|
||||||
# - nightly
|
|
||||||
#script:
|
|
||||||
# - cargo build --verbose
|
|
||||||
# - cargo doc
|
|
||||||
# - cargo test --verbose
|
|
||||||
# - if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
|
|
||||||
# cargo bench --verbose;
|
|
||||||
# fi
|
|
||||||
|
|
||||||
language: rust
|
language: rust
|
||||||
cache: cargo
|
cache: cargo
|
||||||
|
|
||||||
@@ -19,19 +6,35 @@ env:
|
|||||||
- PROJECT_NAME=ripgrep
|
- PROJECT_NAME=ripgrep
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
# Nightly channel
|
# Nightly channel.
|
||||||
- os: osx
|
# (All *nix releases are done on the nightly channel to take advantage
|
||||||
rust: nightly
|
# of the regex library's multiple pattern SIMD search.)
|
||||||
env: TARGET=i686-apple-darwin
|
|
||||||
- os: osx
|
|
||||||
rust: nightly
|
|
||||||
env: TARGET=x86_64-apple-darwin
|
|
||||||
- os: linux
|
- os: linux
|
||||||
rust: nightly
|
rust: nightly
|
||||||
env: TARGET=i686-unknown-linux-musl
|
env: TARGET=i686-unknown-linux-musl
|
||||||
- os: linux
|
- os: linux
|
||||||
rust: nightly
|
rust: nightly
|
||||||
env: TARGET=x86_64-unknown-linux-musl
|
env: TARGET=x86_64-unknown-linux-musl
|
||||||
|
- os: osx
|
||||||
|
rust: nightly
|
||||||
|
env: TARGET=i686-apple-darwin
|
||||||
|
- os: osx
|
||||||
|
rust: nightly
|
||||||
|
env: TARGET=x86_64-apple-darwin
|
||||||
|
# Beta channel.
|
||||||
|
- os: linux
|
||||||
|
rust: beta
|
||||||
|
env: TARGET=x86_64-unknown-linux-musl
|
||||||
|
- os: osx
|
||||||
|
rust: beta
|
||||||
|
env: TARGET=x86_64-apple-darwin
|
||||||
|
# Minimum Rust supported channel.
|
||||||
|
- os: linux
|
||||||
|
rust: 1.9
|
||||||
|
env: TARGET=x86_64-unknown-linux-musl
|
||||||
|
- os: osx
|
||||||
|
rust: 1.9
|
||||||
|
env: TARGET=x86_64-apple-darwin
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- export PATH="$PATH:$HOME/.cargo/bin"
|
- export PATH="$PATH:$HOME/.cargo/bin"
|
||||||
|
Reference in New Issue
Block a user