Skip to content

Commit 9635f9b

Browse files
author
Francois Marier
committed
Merge pull request #34 from shekyan/update-travis
update CI to build both v.1 and current
2 parents 68f1959 + 73e582b commit 9635f9b

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.travis.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1-
install: gem install kramdown
1+
language: python
2+
python:
3+
- "2.7"
4+
sudo: false
5+
install:
6+
- gem install kramdown
7+
- git clone --depth=1 --branch=master https://github.com/tabatkins/bikeshed.git ./bikeshed
8+
- pip install pygments
9+
- pip install --editable ./bikeshed
10+
- bikeshed update
211

312
script: make

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
all: clean index.html index.bikeshed.html
22

33
clean:
4-
rm -rf index.html
4+
rm -rf index.html index.bikeshed.html
55

66
index.html: spec.markdown template.erb
77
sed -e 's/\[\[/\\[\\[/g' -e 's/\]\]/\\]\\]/g' ./spec.markdown | kramdown --parse-block-html --template='template.erb' > index.html

0 commit comments

Comments
 (0)