2018-01-14 13:04:32 +03:00
|
|
|
sudo: required
|
2017-12-23 04:05:19 +03:00
|
|
|
dist: trusty
|
2018-01-13 14:42:52 +03:00
|
|
|
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- libssl-dev
|
|
|
|
|
2017-12-23 04:05:19 +03:00
|
|
|
language: rust
|
|
|
|
rust:
|
|
|
|
- nightly
|
|
|
|
cache:
|
2018-11-05 07:12:52 +03:00
|
|
|
cargo: true
|
2018-01-13 14:42:52 +03:00
|
|
|
|
2018-01-12 10:53:06 +03:00
|
|
|
git:
|
|
|
|
submodules: false
|
|
|
|
before_install:
|
|
|
|
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
|
|
|
|
- git submodule update --init --recursive
|
|
|
|
|
2017-12-23 04:05:19 +03:00
|
|
|
script:
|
2018-11-05 07:12:52 +03:00
|
|
|
- cargo test --color always --all
|
2018-11-10 12:15:15 +03:00
|
|
|
- cargo doc --color always
|
2018-11-05 07:12:52 +03:00
|
|
|
|
2017-12-23 04:05:19 +03:00
|
|
|
after_success:
|
2018-03-02 09:10:08 +03:00
|
|
|
# Temporarily disabled because cargo tarpaulin does not set CARGO_MANIFEST_DIR.
|
|
|
|
#
|
|
|
|
# - bash <(curl https://raw.githubusercontent.com/xd009642/tarpaulin/master/travis-install.sh)
|
|
|
|
# - |
|
|
|
|
# cargo tarpaulin --all --ignore-tests --out Xml &&
|
|
|
|
# bash <(curl -s https://codecov.io/bash)
|
2018-11-10 12:15:15 +03:00
|
|
|
# - '[ $TRAVIS_PULL_REQUEST = false ] &&
|
|
|
|
# [ "$TRAVIS_BRANCH" == "master" ] &&
|
|
|
|
# ./.travis/docs.sh'
|
|
|
|
deploy:
|
2018-11-14 15:36:37 +03:00
|
|
|
local_dir: ./target/doc
|
2018-11-10 13:00:26 +03:00
|
|
|
repo: swc-project/swc-project.github.io
|
|
|
|
target_branch: master
|
2018-11-10 12:15:15 +03:00
|
|
|
provider: pages
|
|
|
|
skip_cleanup: true
|
|
|
|
github_token: $GH_TOKEN
|
|
|
|
email: kdy1@outlook.kr
|
|
|
|
name: "강동윤"
|
|
|
|
on:
|
|
|
|
branch: master
|
|
|
|
|
2017-12-23 04:05:19 +03:00
|
|
|
notifications:
|
2018-01-27 09:14:53 +03:00
|
|
|
email: never
|
2017-12-23 04:05:19 +03:00
|
|
|
env:
|
|
|
|
global:
|
2018-11-05 07:12:52 +03:00
|
|
|
- CASHER_TIME_OUT=600
|
2018-01-27 05:31:45 +03:00
|
|
|
- RUST_MIN_STACK=4194304
|
2018-03-01 08:16:47 +03:00
|
|
|
- RUST_BACKTRACE=full
|
|
|
|
- CARGO_INCREMENTAL=0
|
2018-01-13 15:23:46 +03:00
|
|
|
- RUSTFLAGS="--cfg procmacro2_semver_exempt"
|
2018-01-13 15:20:17 +03:00
|
|
|
- secure: Z4RSNlpg/12Qx2fIjS+7TToYxPJQgK70X7u9A5lJiCIa0JfzWCxr1ZEKXfAVLG9o4nQok+nWOZa+vxR1IgyUVnf6oSanjjWl1pSRbvccxMS799NvHmGzIAiqSKAlxiSJuxf7MQbs1XBuI3XahsWLfXGPo7vPT6sKe4AAf9gT6igJr61D5hpHkVIXK7P6rnrWQALQYplyaox0NlU9UlqSXXBjdJfp3138rl7FIeYRsMMow44unBNPvs+mhVP8PWpeFWeop0jxbNbTHwnJUbCm4ZWrvqnJ/m70IMlBMN1AskLmz4KeXOhPx+XR9VtdWBX4q8lJ7s9J0hMBxrEnxgiYVBPMlLoEX+wW3zwZ5F+DQs7uLpRHYRUpxpi/7ZuQjp+uT3mN9PMMSvbHwHLH2r/CC9olKYWySXIsGsGVyyMnZeUwvgzwxiYLoeCWe4zZY99zc7jvGKbSmk0RtPu6hApPwL5A6novXbXL2QsXzqqeWpgMLmZyb7KYhM5IGIAB1oPQIqI++Re9Z+/ea/DRSUJOsA96yRQ+vVbiuClrVgDhaAaJOGYCtR1XZ5N2zRb9+Spu/ECtfisLOb9Xs1584DyRbqG69nRdjuscjYOTFZUlOoOeFvuADY65Jt0kF6u7g8NIDkJ1ROb3heKQtY/bAQUrBNUJydOQnn5tBwn8Z618+Ac=
|
2018-01-14 08:44:32 +03:00
|
|
|
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
# This is where pull requests from "bors r+" are built.
|
|
|
|
- staging
|
|
|
|
# This is where pull requests from "bors try" are built.
|
|
|
|
- trying
|
2018-01-16 05:54:42 +03:00
|
|
|
# This is required to update docs.
|
2018-11-05 07:12:52 +03:00
|
|
|
- master
|