34 lines
966 B
Bash
Executable File
34 lines
966 B
Bash
Executable File
#!/bin/bash
|
|
# This script is meant to be called in the "deploy" step defined in
|
|
# circle.yml. See https://circleci.com/docs/ for more details.
|
|
# The behavior of the script is controlled by environment variable defined
|
|
# in the circle.yml in the top level folder of the project.
|
|
|
|
|
|
if [ -z $CIRCLE_PROJECT_USERNAME ];
|
|
then USERNAME="sklearn-ci";
|
|
else USERNAME=$CIRCLE_PROJECT_USERNAME;
|
|
fi
|
|
|
|
DOC_REPO="scikit-learn.github.io"
|
|
|
|
MSG="Pushing the docs for revision for branch: $CIRCLE_BRANCH, commit $CIRCLE_SHA1"
|
|
|
|
cd $HOME
|
|
if [ ! -d $DOC_REPO ];
|
|
then git clone "git@github.com:scikit-learn/"$DOC_REPO".git";
|
|
fi
|
|
cd $DOC_REPO
|
|
git checkout master
|
|
git reset --hard origin/master
|
|
git rm -rf dev/ && rm -rf dev/
|
|
cp -R $HOME/scikit-learn/doc/_build/html/stable dev
|
|
git config --global user.email "olivier.grisel+sklearn-ci@gmail.com"
|
|
git config --global user.name $USERNAME
|
|
git config --global push.default matching
|
|
git add -f dev/
|
|
git commit -m "$MSG" dev
|
|
git push
|
|
|
|
echo $MSG
|