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 Feb 23, 2024
1 parent 1156459 commit deba0de
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/metadata.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# 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::Configure failed to allow doc generation, ci/ubuntu.sh probably failed to install all dependencies."
exit 1
fi
- name: Metadata
run: |
cd ltp/metadata
make -j$(getconf _NPROCESSORS_ONLN)
ls -lah ../docparse/*.html
if [ ! -s ../docparse/*.html ]; then
echo "::error::Generated file is empty."
exit 1
fi
if ! file ../docparse/*.html | grep "HTML document"; then
echo "::error::Not HTML document, build probably failed."
exit 1
fi
- name: Metadata test
run: |
cd ltp/metadata
make test

0 comments on commit deba0de

Please sign in to comment.