From da4acf4f0d035bee0b39a45fa208c3a79f10fdd4 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Mon, 5 Oct 2020 12:46:29 +0200 Subject: [PATCH] wget --no-verbose --- .github/workflows/build_doc.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_doc.yml b/.github/workflows/build_doc.yml index 359882709bc..80030f59d1d 100644 --- a/.github/workflows/build_doc.yml +++ b/.github/workflows/build_doc.yml @@ -46,8 +46,7 @@ jobs: set -x sudo apt-get install -y graphviz ssh sudo pip install lxml pyquery - wget -O doxygen_exe https://cgal.geometryfactory.com/~mgimeno/doxygen/build_1_8_13/bin/doxygen - sudo mv doxygen_exe /usr/bin/doxygen + wget --no-verbose -O /usr/bin/doxygen https://cgal.geometryfactory.com/~mgimeno/doxygen/build_1_8_13/bin/doxygen sudo chmod +x /usr/bin/doxygen git config --global user.email "maxime.gimeno@geometryfactory.com" git config --global user.name "Maxime Gimeno" @@ -55,6 +54,7 @@ jobs: - name: configure all if: steps.get_round.outputs.result != 'stop' run: | + set -ex git clone https://CGAL:${{ secrets.PUSH_TO_CGAL_GITHUB_IO_TOKEN }}@github.com/CGAL/cgal.github.io.git --depth=5 mkdir -p build_doc && cd build_doc && cmake ../Documentation/doc @@ -64,7 +64,7 @@ jobs: set -ex PR_NUMBER=${{ steps.get_pr_number.outputs.result }} ROUND=${{ steps.get_round.outputs.result }} - wget cgal.github.io -O tmp.html + wget --no-verbose cgal.github.io -O tmp.html if ! egrep -q "\/$PR_NUMBER\/$ROUND" tmp.html; then mkdir -p cgal.github.io/${PR_NUMBER}/$ROUND cd build_doc && make -j2 doc && make -j2 doc_with_postprocessing