Make sure 32-bit powerpc syscall defs don't leak to 64-bit powerpc sy… #124
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-License-Identifier: GPL-2.0-or-later | |
| # Copyright (c) 2024 Petr Vorel <pvorel@suse.cz> | |
| name: "Test building sphinx doc" | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| paths: ['doc/**'] | |
| permissions: {} | |
| jobs: | |
| sphinx: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout LTP | |
| uses: actions/checkout@v2 | |
| with: | |
| path: ltp | |
| - name: Install sphinx and autotools | |
| run: | | |
| sudo apt update | |
| sudo apt install autoconf make python3-virtualenv | |
| - name: Run configure | |
| run: | | |
| cd "$GITHUB_WORKSPACE/ltp/" | |
| make autotools && ./configure | |
| - name: Install sphinx dependencies | |
| run: | | |
| cd "$GITHUB_WORKSPACE/ltp/doc/" | |
| python3 -m virtualenv .venv | |
| . .venv/bin/activate | |
| pip install -r requirements.txt | |
| - name: Build doc | |
| run: | | |
| cd "$GITHUB_WORKSPACE/ltp/doc/" | |
| . .venv/bin/activate | |
| make |