Skip to content

Commit

Permalink
Fix CI docs builder
Browse files Browse the repository at this point in the history
  • Loading branch information
owent committed Jul 3, 2020
1 parent 922219c commit 017927c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ matrix:
$CMAKE_BIN .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DLIBCOPP_FCONTEXT_USE_TSX=ON -DPROJECT_ENABLE_UNITTEST=ON -DPROJECT_ENABLE_SAMPLE=ON ;
cd "$REPO_DIR/docs";
which pwsh > /dev/null; 2>&1;
bash setup-sphinx.sh;
python3 -m pip install --user --upgrade pip;
python3 -m pip install --user --upgrade -r requirements.txt;
if [[ "doxygen" != "$DOXYGEN_BIN" ]] && [[ ! -e "$DOXYGEN_BIN" ]]; then
mkdir -p "$DOXYGEN_PREFIX";
curl --insecure -L "$DOXYGEN_LINUX_URL" -o doxygen.linux.bin.tar.gz ;
Expand All @@ -96,6 +97,7 @@ matrix:
if [[ -e "output/doxygen/html" ]]; then
rm -rf "output/doxygen/html";
fi
mkdir -p sphinx/doxygen/ ;
mv -f "sphinx/doxygen/html" "output/doxygen/html";
after_success: |
if [[ -e output ]]; then
Expand Down

0 comments on commit 017927c

Please sign in to comment.