This repository has been archived by the owner on Jul 30, 2019. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
html/.travis.yml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
31 lines (30 sloc)
781 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: python | |
python: | |
- '2.7' | |
sudo: false | |
before_install: | |
- 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 | |
- pushd ./bikeshed | |
#- git checkout fbf1456a756299b3ff6d248d0857ec87f2e68cd7 | |
- popd | |
- pip install --editable ./bikeshed | |
- bikeshed update | |
# Use cached copy of bikeshed data files to give consistent builds | |
#- cp -R .spec-data/* ./bikeshed/bikeshed/spec-data | |
script: bikeshed spec | |
env: | |
global: | |
- ENCRYPTION_LABEL: "de967aecadce" | |
- COMMIT_AUTHOR_EMAIL: "plh+deploy@w3.org" | |
deploy: | |
provider: script | |
skip_cleanup: true | |
script: | |
- ./.multipage-split.sh | |
- ./.deploy-output.sh | |
on: | |
branch: master |