update doc GitHub Actions workflow

This commit is contained in:
Alexey Ochapov 2020-11-04 19:36:32 +03:00
parent cba5970cd8
commit 06a3476f30
No known key found for this signature in database
GPG Key ID: 9DC52E8F031B8DA8

View File

@ -11,13 +11,14 @@ jobs:
- name: Create Build Environment
run: |
sudo apt install doxygen
sudo apt install -y doxygen virtualenv npm
sudo npm install -g less
cmake -E make_directory ${{runner.workspace}}/build
- name: Configure
working-directory: ${{runner.workspace}}/build
run: cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} $GITHUB_WORKSPACE
run: cmake -DCMAKE_BUILD_TYPE=Release $GITHUB_WORKSPACE
- name: Build
working-directory: ${{runner.workspace}}/build
run: cmake --build . --config ${{matrix.build_type}}
run: cmake --build . --target doc --config Release