Permalink
Browse files

Merge pull request #34 from shekyan/update-travis

update CI to build both v.1 and current
  • Loading branch information...
2 parents 68f1959 + 73e582b commit 9635f9b7ed2febfc89ca481d7a3a60dab9dada21 @fmarier fmarier committed May 11, 2016
Showing with 11 additions and 2 deletions.
  1. +10 −1 .travis.yml
  2. +1 −1 Makefile
View
@@ -1,3 +1,12 @@
-install: gem install kramdown
+language: python
+python:
+ - "2.7"
+sudo: false
+install:
+ - gem install kramdown
+ - git clone --depth=1 --branch=master https://github.com/tabatkins/bikeshed.git ./bikeshed
+ - pip install pygments
+ - pip install --editable ./bikeshed
+ - bikeshed update
script: make
View
@@ -1,7 +1,7 @@
all: clean index.html index.bikeshed.html
clean:
- rm -rf index.html
+ rm -rf index.html index.bikeshed.html
index.html: spec.markdown template.erb
sed -e 's/\[\[/\\[\\[/g' -e 's/\]\]/\\]\\]/g' ./spec.markdown | kramdown --parse-block-html --template='template.erb' > index.html

0 comments on commit 9635f9b

Please sign in to comment.