mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-01 09:33:26 +00:00
Debug deployment script issues
This prints some more information during the docs deployment.
This commit is contained in:
parent
4015395888
commit
8fbeaa81d8
6
.github/deploy.sh
vendored
6
.github/deploy.sh
vendored
@ -18,16 +18,16 @@ SHA=$(git rev-parse --verify HEAD)
|
|||||||
git checkout $TARGET_BRANCH
|
git checkout $TARGET_BRANCH
|
||||||
)
|
)
|
||||||
|
|
||||||
# Remove the current doc for master
|
echo "Removing the current docs for master"
|
||||||
rm -rf out/master/ || exit 0
|
rm -rf out/master/ || exit 0
|
||||||
|
|
||||||
# Make the doc for master
|
echo "Making the docs for master"
|
||||||
mkdir out/master/
|
mkdir out/master/
|
||||||
cp util/gh-pages/index.html out/master
|
cp util/gh-pages/index.html out/master
|
||||||
python ./util/export.py out/master/lints.json
|
python ./util/export.py out/master/lints.json
|
||||||
|
|
||||||
# Save the doc for the current tag and point current/ to it
|
|
||||||
if [ -n "$TRAVIS_TAG" ]; then
|
if [ -n "$TRAVIS_TAG" ]; then
|
||||||
|
echo "Save the doc for the current tag ($TRAVIS_TAG) and point current/ to it"
|
||||||
cp -r out/master "out/$TRAVIS_TAG"
|
cp -r out/master "out/$TRAVIS_TAG"
|
||||||
rm -f out/current
|
rm -f out/current
|
||||||
ln -s "$TRAVIS_TAG" out/current
|
ln -s "$TRAVIS_TAG" out/current
|
||||||
|
@ -22,6 +22,8 @@ before_install:
|
|||||||
command curl -sSL https://rvm.io/mpapis.asc | gpg --import -
|
command curl -sSL https://rvm.io/mpapis.asc | gpg --import -
|
||||||
rvm get stable
|
rvm get stable
|
||||||
fi
|
fi
|
||||||
|
- echo "TRAVIS_BRANCH:"
|
||||||
|
- echo $TRAVIS_BRANCH
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- . $HOME/.nvm/nvm.sh
|
- . $HOME/.nvm/nvm.sh
|
||||||
|
Loading…
Reference in New Issue
Block a user