Skip to content

Commit

Permalink
ci: Add job for building metadata
Browse files Browse the repository at this point in the history
Signed-off-by: Petr Vorel <pvorel@suse.cz>
  • Loading branch information
pevik committed Jan 4, 2024
1 parent aa51f2a commit 67bad0a
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/metadata.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (c) 2024 Petr Vorel <pvorel@suse.cz>

name: "Test generating metadata documentation"
on: [push, pull_request]

permissions:
contents: read # to fetch code (actions/checkout)

jobs:
metadata:
runs-on: ubuntu-latest
steps:
- name: Checkout LTP
uses: actions/checkout@v2
with:
path: ltp

- name: Install packages for generating documentation
run: |
cd ltp
sudo PACKAGES_FOR_DOCPARSE_ONLY=1 ./ci/ubuntu.sh
- name: Compiler version
run: gcc --version

- name: Autotools
run: |
cd ltp
./build.sh -r autotools
- name: Configure
run: |
cd ltp
./configure --with-metadata-generator=asciidoctor
if ! grep "WITH_METADATA_HTML.*yes" include/mk/features.mk; then
echo "::error::No generation, probably failed to install all dependencies"
exit 1
fi
- name: Metadata
run: |
cd ltp/metadata
make -j$(getconf _NPROCESSORS_ONLN)
file ../docparse/*.html
- name: Metadata test
run: |
cd ltp/metadata
make test

0 comments on commit 67bad0a

Please sign in to comment.