mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-14 09:05:17 +01:00
40 lines
592 B
YAML
40 lines
592 B
YAML
sudo: required
|
|
dist: trusty
|
|
|
|
language: ruby
|
|
rvm:
|
|
- 2.5
|
|
|
|
cache:
|
|
bundler: true
|
|
directories:
|
|
- $TRAVIS_BUILD_DIR/node_modules
|
|
- $TRAVIS_BUILD_DIR/_site/media
|
|
|
|
addons:
|
|
artifacts:
|
|
paths:
|
|
- $TRAVIS_BUILD_DIR/_site/media
|
|
apt:
|
|
packages:
|
|
- libgsl0ldbl
|
|
- libgsl0-dev
|
|
|
|
before_install:
|
|
- nvm install 10
|
|
|
|
before_script: "_ci/setup.sh"
|
|
script: "_ci/build.sh"
|
|
|
|
deploy:
|
|
skip_cleanup: true
|
|
provider: script
|
|
script: "_ci/deploy.sh"
|
|
on:
|
|
branch: master
|
|
|
|
|
|
notifications:
|
|
email: false
|
|
slack: kremalicious:LXLUCjkY5yaZaC9vHl9vIORr
|