Building man page, man.test, manonig.test #442
Workflow file for this run
This file contains 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
name: Building man page, man.test, manonig.test | |
on: | |
push: | |
paths: | |
- '.github/workflows/manpage.yml' | |
- 'docs/**' | |
- 'tests/man.test' | |
- 'tests/manonig.test' | |
- 'jq.1.prebuilt' | |
pull_request: | |
paths: | |
- '.github/workflows/manpage.yml' | |
- 'docs/**' | |
- 'tests/man.test' | |
- 'tests/manonig.test' | |
- 'jq.1.prebuilt' | |
jobs: | |
manpages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Pandoc | |
uses: pandoc/actions/setup@main | |
with: | |
version: 3.4 | |
- name: Configure | |
run: | | |
autoreconf -i | |
./configure --enable-docs | |
- name: Build man page, man.test, manonig.test | |
run: | | |
mv jq.1.prebuilt jq.1.old | |
rm -f tests/man.test tests/manonig.test | |
make jq.1.prebuilt tests/man.test tests/manonig.test | |
- name: Make sure that jq.1.prebuilt, man.test, manonig.test are up to date | |
run: | | |
git diff --exit-code tests/man.test tests/manonig.test | |
# skip build date in jq.1.prebuilt | |
test -s jq.1.prebuilt | |
diff -- <(tail -n +3 jq.1.old) <(tail -n +3 jq.1.prebuilt) |