Skip to content

Commit b786512

Browse files
committed
.github: ci-sphinx-doc: Run autotools and configure
This is now required for the CI (fixes CI pipeline). Link: https://lore.kernel.org/ltp/[email protected]/ Fixes: 1bf344a ("doc: add tests catalog page") Acked-by: Andrea Cervesato <[email protected]> Signed-off-by: Petr Vorel <[email protected]>
1 parent 398bc33 commit b786512

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci-sphinx-doc.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,15 @@ jobs:
2020
with:
2121
path: ltp
2222

23-
- name: Install sphinx
23+
- name: Install sphinx and autotools
2424
run: |
2525
sudo apt update
26-
sudo apt install python3-sphinx python3-virtualenv
26+
sudo apt install autoconf make python3-sphinx python3-virtualenv
27+
28+
- name: Run configure
29+
run: |
30+
cd "$GITHUB_WORKSPACE/ltp/"
31+
make autotools && ./configure
2732
2833
- name: Install sphinx dependencies
2934
run: |

0 commit comments

Comments
 (0)