-
Notifications
You must be signed in to change notification settings - Fork 16
45 lines (45 loc) · 1.3 KB
/
document.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Document
on:
push:
branches:
- gh-pages
tags:
- '*'
pull_request:
schedule:
- cron: 0 0 * * *
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
repository: groonga/groonga
path: groonga
submodules: recursive
- name: Prepare ccache
run: |
echo "CCACHE_DIR=${PWD}/ccache" >> ${GITHUB_ENV}
- name: Cache ccache
uses: actions/cache@v4
with:
path: ccache
key: document-linux-ccache-${{ hashFiles('lib/**', 'src/**', 'plugins/**', 'include/**') }}
restore-keys: document-linux-ccache-
- uses: ruby/setup-ruby@v1
with:
ruby-version: ruby
- name: Install dependencies
run: |
groonga/setup.sh
pip install -r groonga/doc/requirements.txt
(cd groonga/doc && bundle install)
- name: Build document
run: |
ccache --show-stats --verbose --version || :
cmake -S groonga -B /tmp/groonga.build --preset=doc
rake -C groonga release:document:update BUILD_DIR=/tmp/groonga.build GROONGA_ORG_DIR=../
ccache --show-stats --verbose --version || :
# todo Publish (Commit changes).