From f733c264ff4a693cbe7b794f3564ce8b4f7b519a Mon Sep 17 00:00:00 2001 From: Ethan Harris Date: Mon, 16 Aug 2021 16:13:03 +0100 Subject: [PATCH] Drop broken sphinx docs build (#661) * Try to debug docs build * Try something * Try fix * Try fix * Try fix * Try fix * Try fix * Try fix * Try fix * Try something * Try something * Try something * Try fix * Try fix * Try fix * Try fix * Updates * Updates * Drop * Revert --- .github/workflows/docs-check.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/docs-check.yml b/.github/workflows/docs-check.yml index 769450e9ab..d2ae660242 100644 --- a/.github/workflows/docs-check.yml +++ b/.github/workflows/docs-check.yml @@ -7,23 +7,6 @@ on: # Trigger the workflow on push or pull request, but only for the master bran branches: [master] jobs: - sphinx-docs: - runs-on: ubuntu-20.04 - steps: - - uses: actions/checkout@v2 - - uses: ammaraskar/sphinx-action@master - with: - # git is required to clone the docs theme - # before custom requirement are resolved https://github.com/ammaraskar/sphinx-action/issues/16 - pre-build-command: "apt-get update -y && apt-get install -y gcc git pandoc && pip install . && pip install -r ./requirements/docs.txt" - docs-folder: "docs/" - repo-token: "${{ secrets.GITHUB_TOKEN }}" - - uses: actions/upload-artifact@v2 - with: - name: docs-results-${{ github.sha }} - path: docs/build/html/ - - make-docs: runs-on: ubuntu-20.04