2020-12-21 09:47:37 +00:00
|
|
|
name: docs
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
env:
|
|
|
|
nim-version: stable
|
|
|
|
nim-src: waku/waku.nim
|
|
|
|
deploy-dir: .gh-pages
|
2020-12-21 09:56:51 +00:00
|
|
|
key:
|
2020-12-21 09:47:37 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
docs:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-12-21 09:55:07 +00:00
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
# We need to do this because of how github cache works
|
|
|
|
# I am not sure we can move the cache file, so if we do not do this
|
|
|
|
# make update breaks because the cached compiler is there where the submodules
|
|
|
|
# are meant to go.
|
|
|
|
- name: Submodules
|
|
|
|
run: |
|
|
|
|
git submodule update --init --recursive
|
|
|
|
- name: Cache nim
|
|
|
|
uses: actions/cache@v1
|
2020-12-21 09:47:37 +00:00
|
|
|
with:
|
2020-12-21 09:55:07 +00:00
|
|
|
path: vendor/nimbus-build-system/vendor/Nim/bin
|
|
|
|
key: ${{ runner.os }}-${{ matrix.env.NPROC }}-nim-${{ hashFiles('.gitmodules') }}
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2020-12-21 09:56:51 +00:00
|
|
|
make -j2 NIMFLAGS="--parallelBuild:2" V=1 update
|
|
|
|
make -j2 NIMFLAGS="--parallelBuild:2" LOG_LEVEL=TRACE
|
2020-12-21 09:55:07 +00:00
|
|
|
- run: nim doc --index:on --project --out:${{ env.deploy-dir }} ${{ env.nim-src }}
|
2020-12-21 09:47:37 +00:00
|
|
|
- name: Deploy documents
|
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish_dir: ${{ env.deploy-dir }}
|