1
0
mirror of https://github.com/actix/actix-website synced 2024-12-18 01:43:59 +01:00
actix-website/.travis.yml
Armin Ronacher b7025c029f Cache cargo
2018-05-23 22:14:08 +02:00

28 lines
544 B
YAML

sudo: false
cache:
directories:
- $HOME/cargo
- $TRAVIS_BUILD_DIR/examples/target
install:
- curl -L https://github.com/gohugoio/hugo/releases/download/v0.40.3/hugo_0.40.3_Linux-64bit.tar.gz | tar xzvf -
matrix:
include:
- env:
- TASK=build
script: ./hugo
- env:
- TASK=check
language: rust
script: cd examples; cargo check
deploy:
provider: script
script: bash .deploy.sh
skip_cleanup: true
on:
branch: master
condition: $TRAVIS_PULL_REQUEST = "false" && $TASK = "build"