mirror of
https://github.com/servo/servo.git
synced 2025-08-08 06:55:31 +01:00
Disable travis
This commit is contained in:
parent
95a4731c0e
commit
726cd91fd9
5 changed files with 23 additions and 37 deletions
15
etc/ci/upload_docs.sh
Executable file
15
etc/ci/upload_docs.sh
Executable 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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue