blob: cab652d5597a6bad769ab131b878840bbb360f94 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|