Skip to content

Commit

Permalink
Merge pull request e2nIEE#2450 from KS-HTK/issues/pipeline-fix
Browse files Browse the repository at this point in the history
fixed missing gcc compiler in docs_check pipeline.
  • Loading branch information
vogt31337 authored Nov 18, 2024
2 parents d9ada10 + 1c8ed55 commit 6e8bfa2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/github_test_action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,8 @@ jobs:
- name: Check docs for Python ${{ matrix.python-version }}
uses: e2nIEE/sphinx-action@master
with:
pre-build-command: "python -m pip install --upgrade pip;
python -m pip install .[docs];"
pre-build-command: "apt update && apt upgrade -y && apt install -y build-essential gfortran cmake pkg-config libopenblas-dev;
python -m pip install --upgrade pip;
python -m pip install .[docs];"
build-command: "sphinx-build -b html . _build -W"
docs-folder: "doc/"

0 comments on commit 6e8bfa2

Please sign in to comment.