mirror of
https://github.com/actix/actix-web.git
synced 2024-11-03 15:39:50 +00:00
67 lines
2.1 KiB
YAML
67 lines
2.1 KiB
YAML
language: rust
|
|
|
|
rust:
|
|
- 1.20.0
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
env:
|
|
global:
|
|
- RUSTFLAGS="-C link-dead-code"
|
|
- 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 -qq libssl-dev libelf-dev libdw-dev cmake gcc binutils-dev libiberty-dev
|
|
|
|
# Add clippy
|
|
before_script:
|
|
- |
|
|
if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
|
|
( ( cargo install clippy && export CLIPPY=true ) || export CLIPPY=false );
|
|
fi
|
|
- export PATH=$PATH:~/.cargo/bin
|
|
|
|
script:
|
|
- USE_SKEPTIC=1 cargo test --features=alpn
|
|
- |
|
|
if [[ "$TRAVIS_RUST_VERSION" == "1.20.0" ]]; then
|
|
cd examples/diesel && cargo check && cd ../..
|
|
cd examples/multipart && cargo check && cd ../..
|
|
fi
|
|
- |
|
|
if [[ "$TRAVIS_RUST_VERSION" == "beta" ]]; then
|
|
cd examples/template_tera && cargo check && cd ../..
|
|
cd examples/tls && cargo check && cd ../..
|
|
cd examples/websocket-chat && cargo check && cd ../..
|
|
fi
|
|
- |
|
|
if [[ "$TRAVIS_RUST_VERSION" == "nightly" && $CLIPPY ]]; then
|
|
cargo clippy
|
|
fi
|
|
|
|
# Upload docs
|
|
after_success:
|
|
- |
|
|
if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
|
|
cargo doc --features alpn --no-deps &&
|
|
echo "<meta http-equiv=refresh content=0;url=os_balloon/index.html>" > target/doc/index.html &&
|
|
cargo install mdbook &&
|
|
cd guide && mdbook build -d ../target/doc/guide && cd .. &&
|
|
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_OS_NAME" == "linux" && "$TRAVIS_RUST_VERSION" == "stable" ]]; then
|
|
bash <(curl https://raw.githubusercontent.com/xd009642/tarpaulin/master/travis-install.sh)
|
|
USE_SKEPTIC=1 cargo tarpaulin --out Xml
|
|
bash <(curl -s https://codecov.io/bash)
|
|
echo "Uploaded code coverage"
|
|
fi
|