mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-08-01 05:27:45 +00:00
commit
a417b81992
2 changed files with 20 additions and 2 deletions
21
.travis.yml
21
.travis.yml
|
@ -22,12 +22,29 @@ matrix:
|
||||||
- rust: nightly
|
- rust: nightly
|
||||||
os: linux
|
os: linux
|
||||||
env: FEATURES=nightly,redox CC=x86_64-unknown-redox-gcc CARGO_ARGS='--no-default-features --target=x86_64-unknown-redox' REDOX=1
|
env: FEATURES=nightly,redox CC=x86_64-unknown-redox-gcc CARGO_ARGS='--no-default-features --target=x86_64-unknown-redox' REDOX=1
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
- $HOME/.cargo
|
- $HOME/.cargo
|
||||||
|
|
||||||
sudo: true
|
sudo: true
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- if [ $REDOX ]; then ./.travis/redox-toolchain.sh; fi
|
- if [ $REDOX ]; then ./.travis/redox-toolchain.sh; fi
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- cargo build $CARGO_ARGS --features "$FEATURES"
|
- cargo build $CARGO_ARGS --features "$FEATURES"
|
||||||
- if [ ! $REDOX ]; then cargo test $CARGO_ARGS --features "$FEATURES" --no-fail-fast; fi
|
- if [ ! $REDOX ]; then cargo test $CARGO_ARGS --features "$FEATURES" --no-fail-fast; fi
|
||||||
|
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- libssl-dev
|
||||||
|
|
||||||
|
after_success: |
|
||||||
|
if [ "$TRAVIS_OS_NAME" = linux -a "$TRAVIS_RUST_VERSION" = stable ]; then
|
||||||
|
bash <(curl https://raw.githubusercontent.com/xd009642/tarpaulin/master/travis-install.sh)
|
||||||
|
cargo tarpaulin --out Xml
|
||||||
|
bash <(curl -s https://codecov.io/bash)
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ uutils coreutils
|
||||||
[](https://github.com/uutils/coreutils/blob/master/LICENSE)
|
[](https://github.com/uutils/coreutils/blob/master/LICENSE)
|
||||||
[](https://travis-ci.org/uutils/coreutils)
|
[](https://travis-ci.org/uutils/coreutils)
|
||||||
[](https://ci.appveyor.com/project/Arcterus/coreutils)
|
[](https://ci.appveyor.com/project/Arcterus/coreutils)
|
||||||
|
[](https://codecov.io/gh/uutils/coreutils)
|
||||||
[](https://github.com/Aaronepower/tokei)
|
[](https://github.com/Aaronepower/tokei)
|
||||||
|
|
||||||
uutils is an attempt at writing universal (as in cross-platform) CLI
|
uutils is an attempt at writing universal (as in cross-platform) CLI
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue