Added simple build process in TravisCI

This commit is contained in:
2019-05-31 18:34:38 +02:00
parent 0475a8fadc
commit e6d8be18ee
2 changed files with 20 additions and 0 deletions

12
.travis.yml Normal file
View File

@@ -0,0 +1,12 @@
---
language: ruby
env:
- JEKYLL_ENV=production
before_install:
- sudo apt-get install python-pip -y
- sudo pip install docutils pygments
before_script:
- git clone https://github.com/gryf/jekyll-rst _plugins/jekyll-rst
install:
- bundle install
script: bundle exec jekyll build

8
Gemfile Normal file
View File

@@ -0,0 +1,8 @@
source "https://rubygems.org"
ruby RUBY_VERSION
# We'll need rake to build our site in TravisCI
gem "rake", "~> 12"
gem "jekyll"
gem "RbST"
gem "nokogiri"