-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
29 lines (29 loc) · 855 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
language: python
python:
- '2.7.6'
sudo: false
branches:
only:
- master
before_install:
- chmod 755 ./.deploy-output.sh
- chmod 755 ./.multipage-split.sh
- nvm install stable
install:
- pip install -U pip setuptools>=18.5
- pip install pygments cssselect html5lib lxml
- git clone --depth=500 --branch=master https://github.com/tabatkins/bikeshed.git ./bikeshed
# Use stable copy of bikeshed
- pushd ./bikeshed
- git checkout fbf1456a756299b3ff6d248d0857ec87f2e68cd7
- popd
- pip install --editable ./bikeshed
# Use latest update for the build.
- bikeshed update
# Use cached copy of bikeshed data files to give consistent builds
#- cp -R .spec-data/* ./bikeshed/bikeshed/spec-data
script: 'bikeshed spec && ./.multipage-split.sh && ./.deploy-output.sh'
env:
global:
- ENCRYPTION_LABEL: "de967aecadce"
- COMMIT_AUTHOR_EMAIL: "plh+deploy@w3.org"