Disable travis

This commit is contained in:
Lars Bergstrom 2014-09-24 11:57:26 -05:00 committed by Jack Moffitt
parent 95a4731c0e
commit 726cd91fd9
5 changed files with 23 additions and 37 deletions

15
etc/ci/upload_docs.sh Executable file
View file

@ -0,0 +1,15 @@
#!/bin/bash
#
# Helper script to upload docs to doc.servo.org.
# Requires ghp-import (from pip)
# GitHub API token must be passed in environment var TOKEN
set -e
mkdir -p target/doc
cp -R rust/doc/* target/doc/
cp etc/doc.servo.org/* target/doc/
./mach doc # After copying rust/doc, so that the crate index is correct
ghp-import -n target/doc
git push -qf https://${TOKEN}@github.com/servo/doc.servo.org.git gh-pages