mirror of
https://github.com/sharkdp/fd.git
synced 2024-11-18 18:00:35 +01:00
6f22957cdc
* Rewrite integration tests in Rust. * Improve failure output for integration tests. * Move TestEnv to separate module. * Remove old integration tests script. * Re-add integration test for subdirectory.
38 lines
802 B
YAML
38 lines
802 B
YAML
language: rust
|
|
rust:
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
matrix:
|
|
allow_failures:
|
|
- rust: nightly
|
|
include:
|
|
# Nightly channel.
|
|
- os: linux
|
|
rust: nightly
|
|
env: TARGET=i686-unknown-linux-musl
|
|
- os: linux
|
|
rust: nightly
|
|
env: TARGET=x86_64-unknown-linux-musl
|
|
# currently disabled
|
|
# - os: osx
|
|
# rust: nightly
|
|
# env: TARGET=x86_64-apple-darwin
|
|
# Beta channel.
|
|
- os: linux
|
|
rust: beta
|
|
env: TARGET=x86_64-unknown-linux-musl
|
|
- os: linux
|
|
rust: beta
|
|
env: TARGET=x86_64-unknown-linux-gnu
|
|
# Minimum Rust supported channel.
|
|
- os: linux
|
|
rust: 1.16.0
|
|
env: TARGET=x86_64-unknown-linux-gnu
|
|
- os: linux
|
|
rust: 1.16.0
|
|
env: TARGET=x86_64-unknown-linux-musl
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|