From 2311bb66491a37e59400c0ba35938ca113ef17ea Mon Sep 17 00:00:00 2001 From: Mirko Bunse Date: Mon, 16 Sep 2024 13:44:35 +0200 Subject: [PATCH 1/3] CI: replace ammaraskar/sphinx-action with custom run commands --- .github/workflows/ci.yml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 030b152..9ba9d0f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,9 +20,9 @@ jobs: env: QUAPY_TESTS_OMIT_LARGE_DATASETS: True steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -38,15 +38,17 @@ jobs: runs-on: ubuntu-latest if: github.ref == 'refs/heads/master' steps: - - uses: actions/checkout@v1 - - name: Build documentation - uses: ammaraskar/sphinx-action@master + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 with: - pre-build-command: | - apt-get --allow-releaseinfo-change update -y && apt-get install -y git && git --version - python -m pip install --upgrade pip setuptools wheel "jax[cpu]" - python -m pip install -e .[composable,neural,docs] - docs-folder: "docs/" + python-version: 3.11 + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools wheel "jax[cpu]" + python -m pip install -e .[composable,neural,docs] + - name: Build documentation + run: sphinx-build -M html docs/source docs/build - name: Publish documentation run: | git clone ${{ github.server_url }}/${{ github.repository }}.git --branch gh-pages --single-branch __gh-pages/ From de3f8fd300d50202f1ec0e926d7b7228ee20fb31 Mon Sep 17 00:00:00 2001 From: Mirko Bunse Date: Mon, 16 Sep 2024 13:48:11 +0200 Subject: [PATCH 2/3] TO REVERT: build gh-pages even on pushes to devel --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ba9d0f..7dd0cfe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,6 @@ jobs: docs: name: Documentation runs-on: ubuntu-latest - if: github.ref == 'refs/heads/master' steps: - uses: actions/checkout@v4 - name: Set up Python From 3895cba6104143a7ce624872743b1d6a42e8ac90 Mon Sep 17 00:00:00 2001 From: Mirko Bunse Date: Mon, 16 Sep 2024 13:56:00 +0200 Subject: [PATCH 3/3] Revert "TO REVERT: build gh-pages even on pushes to devel" This reverts commit de3f8fd300d50202f1ec0e926d7b7228ee20fb31. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7dd0cfe..9ba9d0f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,6 +36,7 @@ jobs: docs: name: Documentation runs-on: ubuntu-latest + if: github.ref == 'refs/heads/master' steps: - uses: actions/checkout@v4 - name: Set up Python