mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
remove travis
This commit is contained in:
parent
f6c8a218bf
commit
cb4df30a86
2 changed files with 1 additions and 60 deletions
59
.travis.yml
59
.travis.yml
|
@ -1,59 +0,0 @@
|
||||||
language: rust
|
|
||||||
sudo: required
|
|
||||||
dist: trusty
|
|
||||||
|
|
||||||
cache:
|
|
||||||
cargo: true
|
|
||||||
apt: true
|
|
||||||
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- rust: stable
|
|
||||||
- rust: beta
|
|
||||||
- rust: nightly-2020-02-16
|
|
||||||
allow_failures:
|
|
||||||
- rust: nightly-2020-02-16
|
|
||||||
|
|
||||||
env:
|
|
||||||
global:
|
|
||||||
- OPENSSL_VERSION=openssl-1.0.2
|
|
||||||
|
|
||||||
before_install:
|
|
||||||
- sudo add-apt-repository -y ppa:0k53d-karl-f830m/openssl
|
|
||||||
- sudo apt-get update -qq
|
|
||||||
- sudo apt-get install -y openssl libssl-dev libelf-dev libdw-dev cmake gcc binutils-dev libiberty-dev
|
|
||||||
|
|
||||||
before_cache: |
|
|
||||||
if [[ "$TRAVIS_RUST_VERSION" == "nightly-2020-02-16" ]]; then
|
|
||||||
RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo install --version 0.10.2 cargo-tarpaulin
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Add clippy
|
|
||||||
before_script:
|
|
||||||
- export PATH=$PATH:~/.cargo/bin
|
|
||||||
|
|
||||||
script:
|
|
||||||
- cargo update
|
|
||||||
# - cargo check --all
|
|
||||||
- |
|
|
||||||
if [[ "$TRAVIS_RUST_VERSION" == "stable" || "$TRAVIS_RUST_VERSION" == "beta" ]]; then
|
|
||||||
cargo test --all-features --all -- --nocapture
|
|
||||||
cd ntex; cargo test --no-default-features --features="rustls" -- --nocapture; cd ..
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Upload docs
|
|
||||||
after_success:
|
|
||||||
- |
|
|
||||||
if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_RUST_VERSION" == "stable" ]]; then
|
|
||||||
cargo doc --no-deps --all-features &&
|
|
||||||
echo "<meta http-equiv=refresh content=0;url=os_balloon/index.html>" > target/doc/index.html &&
|
|
||||||
git clone https://github.com/davisp/ghp-import.git &&
|
|
||||||
./ghp-import/ghp_import.py -n -p -f -m "Documentation upload" -r https://"$GH_TOKEN"@github.com/"$TRAVIS_REPO_SLUG.git" target/doc &&
|
|
||||||
echo "Uploaded documentation"
|
|
||||||
fi
|
|
||||||
- |
|
|
||||||
if [[ "$TRAVIS_RUST_VERSION" == "nightly-2020-02-16" ]]; then
|
|
||||||
cargo tarpaulin --out Xml --all --all-features
|
|
||||||
bash <(curl -s https://codecov.io/bash)
|
|
||||||
echo "Uploaded code coverage"
|
|
||||||
fi
|
|
|
@ -4,7 +4,7 @@
|
||||||
<p>
|
<p>
|
||||||
|
|
||||||
[/badge.svg)](https://travis-ci.org/ntex-rs/ntex)
|
[/badge.svg)](https://travis-ci.org/ntex-rs/ntex)
|
||||||
[](https://codecov.io/gh/fafhrd91/ntex)
|
[](https://codecov.io/gh/ntex-rs/ntex)
|
||||||
[](https://crates.io/crates/ntex)
|
[](https://crates.io/crates/ntex)
|
||||||
[](https://docs.rs/ntex)
|
[](https://docs.rs/ntex)
|
||||||
[](https://blog.rust-lang.org/2020/03/12/Rust-1.42.html)
|
[](https://blog.rust-lang.org/2020/03/12/Rust-1.42.html)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue