Permalink
Browse files

update CI to build both v.1 and current

- update .travis.yml to install bikeshed
- update Makefile `clean` target to remove index.bikeshed.html
  • Loading branch information...
1 parent 68f1959 commit 73e582bedf22f02f740f0573781f31aac8a47c38 @shekyan shekyan 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 73e582b

Please sign in to comment.