From c3f89822cbc00ea9f908436086486a971a165245 Mon Sep 17 00:00:00 2001 From: Grummfy Date: Fri, 9 Jun 2017 02:07:15 +0200 Subject: [PATCH 1/3] adding travis --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..d29215c --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: ruby +rvm: +- 2.3.3 + +install: gem install jekyll html-proofer jekyll-coffeescript jekyll-paginate + +script: jekyll build && htmlproofer ./_site + +#env: +# global: +# - NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer + +sudo: false From b51c1fbffe0f7933cab3b10b14fd6d17d14880f4 Mon Sep 17 00:00:00 2001 From: Grummfy Date: Fri, 9 Jun 2017 02:15:18 +0200 Subject: [PATCH 2/3] speed up travis --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index d29215c..9edbbb8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,8 +6,8 @@ install: gem install jekyll html-proofer jekyll-coffeescript jekyll-paginate script: jekyll build && htmlproofer ./_site -#env: -# global: -# - NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer +env: + global: + - NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer sudo: false From bfdbe1681b27cf99588b788d1019504502cf29cf Mon Sep 17 00:00:00 2001 From: Grummfy Date: Fri, 9 Jun 2017 02:20:41 +0200 Subject: [PATCH 3/3] split travis tasks --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9edbbb8..8813f5d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,9 @@ rvm: install: gem install jekyll html-proofer jekyll-coffeescript jekyll-paginate -script: jekyll build && htmlproofer ./_site +script: + - jekyll build + - htmlproofer ./_site env: global: