diff options
author | Joel Rosdahl <joel@rosdahl.net> | 2021-07-26 10:23:25 +0200 |
---|---|---|
committer | Joel Rosdahl <joel@rosdahl.net> | 2021-07-26 13:38:58 +0200 |
commit | 63239e95632fb51795f0bac5f9d3c46c849e6f5d (patch) | |
tree | baaac70e7c51a501c6ef1a62865aeed58c8e6adf /.github | |
parent | 5f39e40328c6bd75d6bb86f7fdcde6aa70db7611 (diff) | |
download | ccache-63239e95632fb51795f0bac5f9d3c46c849e6f5d.tar.gz |
Use Asciidoctor instead of Asciidoc to render documentation
Asciidoctor seems to:
- Provide a nice left-hand side table of contents.
- Have nicer looking defaults.
- Be faster.
- Have less (but non-zero) quirks.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index dce8f351..ac155e24 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -248,19 +248,19 @@ jobs: CC: gcc CXX: g++ SPECIAL: build-and-verify-source-package - apt_get: elfutils libzstd-dev pkg-config libhiredis-dev ninja-build asciidoc xsltproc docbook-xml docbook-xsl + apt_get: elfutils libzstd-dev pkg-config libhiredis-dev ninja-build asciidoctor - name: HTML documentation os: ubuntu-18.04 EXTRA_CMAKE_BUILD_FLAGS: --target doc-html RUN_TESTS: none - apt_get: libzstd-dev pkg-config libhiredis-dev asciidoc docbook-xml docbook-xsl + apt_get: libzstd-dev pkg-config libhiredis-dev asciidoctor - name: Manual page os: ubuntu-18.04 EXTRA_CMAKE_BUILD_FLAGS: --target doc-man-page RUN_TESTS: none - apt_get: libzstd-dev pkg-config libhiredis-dev asciidoc xsltproc docbook-xml docbook-xsl + apt_get: libzstd-dev pkg-config libhiredis-dev asciidoctor - name: Clang-Tidy os: ubuntu-18.04 |