Skip to content

Commit

Permalink
ci: Temporarily fix sphinx pipeline by downloading our own skrub cache
Browse files Browse the repository at this point in the history
  • Loading branch information
thomass-dev committed Jan 22, 2025
1 parent 58a959e commit 1ba284a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,10 @@ jobs:
with:
python-version: '3.12'
cache: 'pip'
- shell: bash
run: wget -qO- "${SKRUB_DATA_URL}" | tar -zxvf - -C "${GITHUB_WORKSPACE}"
env:
SKRUB_DATA_URL: https://skore.probabl.ai/f355443be646d49eab1aa76e29dfd0a8/skrub-data.tar.gz
- uses: ./.github/actions/sphinx/build
timeout-minutes: 10
with:
Expand All @@ -117,6 +121,15 @@ jobs:
name: sphinx-html-artifact
path: sphinx/build/html/

test:
runs-on: ubuntu-latest
needs: sphinx-build
steps:
- shell: bash
run: |
ls -lAF --group-directories-first ~
ls -lAF --group-directories-first ~/skrub_data
sphinx-deploy-html:
if: ${{ (github.event_name == 'release') || (github.event_name == 'push' && github.ref == 'refs/heads/main') }}
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1ba284a

Please sign in to comment.