blob: 07e2af0ad5f46b047e129e5e5ced40e2c1a5b281 [file] [log] [blame]
Davide Pesavento8f0028d2021-07-27 20:01:06 -04001name: Docs
2on:
3 push:
Davide Pesavento13dae352021-08-13 15:40:54 -04004 paths-ignore:
5 - '.mailmap'
6 - '.travis.yml'
Davide Pesavento8f0028d2021-07-27 20:01:06 -04007 workflow_dispatch:
8
Davide Pesavento13dae352021-08-13 15:40:54 -04009permissions:
10 contents: read
11
Davide Pesavento8f0028d2021-07-27 20:01:06 -040012jobs:
13 build:
14 strategy:
15 fail-fast: false
16 matrix:
17 os: [macos-10.15, ubuntu-20.04]
18 runs-on: ${{ matrix.os }}
19 env:
20 JOB_NAME: Docs
21 WAF_JOBS: 3
22 steps:
23 - name: Checkout
24 uses: actions/checkout@v2
25 with:
26 submodules: true
27 - name: Install dependencies
28 run: |
29 case ${RUNNER_OS} in
30 Linux) export NODE_LABELS="Linux Ubuntu Ubuntu-20.04" ;;
31 macOS) export NODE_LABELS="OSX OSX-10.15" ;;
32 esac
33 find .jenkins.d/ -type f -name '[1-9]*.sh' -exec chmod -x '{}' +
34 ./.jenkins
35 - name: Build documentation
36 run: |
37 ./waf --color=yes configure
38 ./waf --color=yes build --targets=version.hpp
39 ./waf --color=yes build --targets=manpages
40 ./waf --color=yes docs