blob: 3c9d20e37f904fa5b8a4e8b122ce7834fab57d5a [file] [log] [blame]
Davide Pesavento30ed6282021-07-25 20:05:06 -04001name: Docs
2on:
3 push:
Davide Pesavento01cea502021-07-31 19:25:42 -04004 paths-ignore:
Davide Pesavento83f8d162021-09-26 21:58:36 -04005 - '*.md'
Davide Pesavento01cea502021-07-31 19:25:42 -04006 - '.mailmap'
Davide Pesavento30ed6282021-07-25 20:05:06 -04007 workflow_dispatch:
8
Davide Pesavento01cea502021-07-31 19:25:42 -04009permissions:
10 contents: read
11
Davide Pesavento30ed6282021-07-25 20:05:06 -040012jobs:
13 build:
14 strategy:
15 fail-fast: false
16 matrix:
Davide Pesavento83f8d162021-09-26 21:58:36 -040017 os: [macos-11, ubuntu-20.04]
Davide Pesavento30ed6282021-07-25 20:05:06 -040018 runs-on: ${{ matrix.os }}
19 env:
20 JOB_NAME: Docs
Davide Pesavento30ed6282021-07-25 20:05:06 -040021 steps:
22 - name: Checkout
Davide Pesavento541a8222022-03-01 15:08:42 -050023 uses: actions/checkout@v3
Davide Pesavento30ed6282021-07-25 20:05:06 -040024 - name: Install dependencies
25 run: |
Davide Pesavento30ed6282021-07-25 20:05:06 -040026 find .jenkins.d/ -type f -name '[1-9]*.sh' -exec chmod -x '{}' +
27 ./.jenkins
28 - name: Build documentation
29 run: |
30 ./waf --color=yes configure
31 ./waf --color=yes build --targets=version.hpp
32 ./waf --color=yes build --targets=manpages
33 ./waf --color=yes docs