diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-02-12 00:16:41 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-02-12 00:53:02 +0300 |
commit | 0979848fc9d3df8283fb756366369a32dd5cd34e (patch) | |
tree | 978bccb196471ee4aa7ca1464fe93b3d4f2bc297 /.travis.yml | |
parent | renamed layout 'plain' to 'default' (diff) | |
download | egor-tensin.github.io-0979848fc9d3df8283fb756366369a32dd5cd34e.tar.gz egor-tensin.github.io-0979848fc9d3df8283fb756366369a32dd5cd34e.zip |
Travis: add configuration
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..cab652d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +os: linux +dist: bionic +language: ruby + +jobs: + fast_finish: true + + include: + - name: Build using Bundler + install: bundle install --jobs=3 --retry=3 + script: bundle exec jekyll build + - name: Build using latest github-pages + install: + # `jekyll build` seems to be using Bundler if Gemfile is present: + - rm -f -- Gemfile Gemfile.lock + - gem install github-pages + script: jekyll build |