From a10b52cd8b9746168e167de94094227ebebe4180 Mon Sep 17 00:00:00 2001 From: Gereon Kremer Date: Sat, 8 May 2021 01:14:13 +0200 Subject: Integrate documentation build with the regular CI workflow (#6490) The new documentation workflow requires building CVC5 again in a separate workflow, which takes quite some time. This PR integrates building the documentation with the regular CI workflow. --- .github/workflows/ci.yml | 133 ++++++++++++++++++++++++++++++-------- .github/workflows/docs_update.yml | 112 -------------------------------- 2 files changed, 106 insertions(+), 139 deletions(-) delete mode 100644 .github/workflows/docs_update.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a207723dd..92e4dca44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,28 +1,24 @@ -on: [push, pull_request] +on: [push, pull_request, pull_request_target] name: CI jobs: build: + if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' }} strategy: matrix: - os: [ubuntu-latest, macos-latest] - name: [ - production, - production-clang, - production-dbg, - production-dbg-clang - ] - - exclude: - - name: production-clang - os: macos-latest - - name: production-dbg - os: macos-latest - - name: production-dbg-clang - os: macos-latest - include: - - name: production + - name: ubuntu:production + os: ubuntu-latest + config: production --auto-download --all-bindings --editline --docs + cache-key: production + python-bindings: true + build-documentation: true + check-examples: true + exclude_regress: 3-4 + run_regression_args: --no-check-unsat-cores --no-check-proofs + + - name: macos:production + os: macos-latest config: production --auto-download --all-bindings --editline cache-key: production python-bindings: true @@ -30,31 +26,31 @@ jobs: exclude_regress: 3-4 run_regression_args: --no-check-unsat-cores --no-check-proofs - - name: production-clang + - name: ubuntu:production-clang + os: ubuntu-latest + env: CC=clang CXX=clang++ config: production --auto-download cache-key: productionclang check-examples: true - env: CC=clang CXX=clang++ - os: ubuntu-latest exclude_regress: 3-4 run_regression_args: --no-check-unsat-cores --no-check-proofs - - name: production-dbg + - name: ubuntu:production-dbg + os: ubuntu-latest config: production --auto-download --assertions --tracing --unit-testing --editline cache-key: dbg - os: ubuntu-latest exclude_regress: 3-4 run_regression_args: --no-check-unsat-cores - - name: production-dbg-clang + - name: ubuntu:production-dbg-clang + os: ubuntu-latest + env: CC=clang CXX=clang++ config: production --auto-download --assertions --tracing --unit-testing --cln --gpl cache-key: dbgclang - env: CC=clang CXX=clang++ - os: ubuntu-latest exclude_regress: 3-4 run_regression_args: --no-check-proofs - name: ${{ matrix.os }}:${{ matrix.name }} + name: ${{ matrix.name }} runs-on: ${{ matrix.os }} steps: @@ -108,6 +104,13 @@ jobs: python3 -m pip install \ Cython==0.29.* --install-option="--no-cython-compile" echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH + + - name: Install Documentation Dependencies + if: matrix.build-documentation + run: | + sudo apt-get install -y doxygen python3-docutils python3-jinja2 + python3 -m pip install \ + sphinxcontrib-bibtex sphinx-tabs sphinx-rtd-theme breathe # The GitHub action for caching currently does not support modifying an # already existing cache. We thus have a few different possibilities: @@ -214,3 +217,79 @@ jobs: make -j2 ctest -j2 --output-on-failure working-directory: examples + + - name: Build Documentation + if: matrix.build-documentation + run: make -j2 docs-gh + working-directory: build + + - name: Store Documentation + if: matrix.build-documentation + uses: actions/upload-artifact@v2 + with: + name: documentation + path: build/docs/sphinx-gh/ + + upload-docs: + if: github.event_name == 'push' || github.event_name == 'pull_request_target' + name: upload-docs + runs-on: ubuntu-latest + continue-on-error: true + needs: build + steps: + - name: Setup Deploy Key + env: + SSH_AUTH_SOCK: /tmp/ssh_agent.sock + run: | + ssh-agent -a $SSH_AUTH_SOCK > /dev/null + ssh-add - <<< "${{ secrets.CVC5_DOCS_TOKEN }}" + + - name: Setup Context + run: | + if [ "${{ github.event_name }}" == "push" ] ; then + NAME=$(echo "${GITHUB_REF}" | sed "s,refs/heads/,,") + HASH=${{ github.sha }} + echo "Identified branch $NAME" + elif [ "${{ github.event_name }}" == "pull_request_target" ] ; then + NAME="${{ github.event.number }}" + HASH="${{ github.event.pull_request.head.sha }}" + echo "Identified PR #$NAME (from $HASH)" + NAME="pr$NAME" + fi + echo "NAME=$NAME" >> $GITHUB_ENV + echo "HASH=$HASH" >> $GITHUB_ENV + + - name: Clone Documentation Repository + env: + SSH_AUTH_SOCK: /tmp/ssh_agent.sock + run: | + git config --global user.email "docbot@cvc5" + git config --global user.name "DocBot" + git clone git@github.com:cvc5/docs-ci.git target/ + + - name: Fetch artifact + uses: actions/download-artifact@v2 + with: + name: documentation + path: docs-new + + - name: Update docs + continue-on-error: true + env: + SSH_AUTH_SOCK: /tmp/ssh_agent.sock + run: | + if [ -n "$NAME" ]; then + mv docs-new target/docs-$NAME-$HASH + cd target/ + rm -f docs-$NAME + ln -s docs-$NAME-$HASH docs-$NAME + git add docs-$NAME docs-$NAME-$HASH + + python3 genindex.py + git add README.md + git commit -m "Update docs for $NAME" + + git push + else + echo "Ignored run" + fi diff --git a/.github/workflows/docs_update.yml b/.github/workflows/docs_update.yml deleted file mode 100644 index e9244cec3..000000000 --- a/.github/workflows/docs_update.yml +++ /dev/null @@ -1,112 +0,0 @@ -name: documentation update -on: - push: - paths: - - '.github/**' - - 'docs/**' - - 'examples/**' - - 'src/api/**' - pull_request_target: - paths: - - '.github/**' - - 'docs/**' - - 'examples/**' - - 'src/api/**' - -# When run by pull_request_target (in comparison to pull_request), the action -# has access to the repository secrets so that we can push the generated docs. -# To allow this, the action is run in the context of the master branch instead -# of the PR. We therefore obtain the changes from the PR manually, -# but need to be very careful to not pull any changes to files that are executed -# during configuration or build. At the same time, we try to include as many -# files as possible that may change how the documentations looks like. -# To ensure this, we only checkout a very selected set of files from the PR -# branch: -# - docs/**.(bib|rst) -# - src/api/**.(cpp|h|java|py) -# - examples/**.(cpp|h|java|py|smt2) -# In particular, we should not checkout any CMakeLists.txt files or any python -# files used by sphinx. - -jobs: - build: - runs-on: ubuntu-latest - continue-on-error: true - steps: - - uses: actions/checkout@v2 - - - name: Install Packages - run: | - sudo apt-get update - sudo apt-get install -y \ - build-essential \ - libgmp-dev \ - doxygen \ - python3-docutils python3-jinja2 - python3 -m pip install \ - setuptools toml pytest \ - sphinxcontrib-bibtex sphinx-tabs sphinx-rtd-theme \ - breathe - python3 -m pip install \ - Cython==0.29.* --install-option="--no-cython-compile" - echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH - - - name: Checkout PR - run: | - git config --global user.email "docbot@cvc5" - git config --global user.name "DocBot" - if [ "${{ github.event_name }}" == "push" ] ; then - NAME=$(echo "${GITHUB_REF}" | sed "s,refs/heads/,,") - HASH=${{ github.sha }} - echo "Identified branch $NAME" - elif [ "${{ github.event_name }}" == "pull_request_target" ] ; then - NAME="${{ github.event.number }}" - HASH="${{ github.event.pull_request.head.sha }}" - echo "Identified PR #$NAME (from $HASH)" - NAME="pr$NAME" - # be careful here, see explanation above! - git remote add pr "${{ github.event.pull_request.head.repo.clone_url}}" - git fetch pr "${{ github.event.pull_request.head.ref}}:pr" - git checkout "${HASH}" -- \ - `git ls-tree "${HASH}" --name-only -r docs/ | grep -E ".*\.(rst|bib)"` \ - `git ls-tree "${HASH}" --name-only -r src/api/ | grep -E ".*\.(h|cpp|java|py)"` \ - `git ls-tree "${HASH}" --name-only -r examples/ | grep -E ".*\.(h|cpp|java|py|smt2)"` - fi - echo "NAME=$NAME" >> $GITHUB_ENV - echo "HASH=$HASH" >> $GITHUB_ENV - - - name: Configure - run: ./configure.sh production --docs --all-bindings --auto-download - - - name: Build - run: make -j2 docs-gh - working-directory: build - - - name: Setup Deploy Key - env: - SSH_AUTH_SOCK: /tmp/ssh_agent.sock - run: | - ssh-agent -a $SSH_AUTH_SOCK > /dev/null - ssh-add - <<< "${{ secrets.CVC5_DOCS_TOKEN }}" - - - name: Update docs - continue-on-error: true - env: - SSH_AUTH_SOCK: /tmp/ssh_agent.sock - run: | - git clone git@github.com:cvc5/docs-ci.git target/ - if [ -n "$NAME" ]; then - rsync -a --delete build/docs/sphinx-gh/ target/docs-$NAME-$HASH - cd target/ - rm -f docs-$NAME - ln -s docs-$NAME-$HASH docs-$NAME - git add docs-$NAME docs-$NAME-$HASH - - python3 genindex.py - git add README.md - git commit -m "Update docs for $NAME" - - git push - else - echo "Ignored run" - fi -- cgit v1.2.3