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 bac6e9d commit a9a8484
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/metadata.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# 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
- name: Metadata
run: |
cd ltp/metadata
make -j$(getconf _NPROCESSORS_ONLN)
file ../docparse/*.html
- name: Metadata test
run: |
make test

0 comments on commit a9a8484

Please sign in to comment.