mirror of
https://github.com/TheLartians/ModernCppStarter.git
synced 2025-08-30 13:41:13 +02:00
switch to ubunto for documentation workflow
This commit is contained in:
parent
ed88fc7db7
commit
d8c4c209fa
1 changed files with 8 additions and 4 deletions
12
.github/workflows/documentation.yaml
vendored
12
.github/workflows/documentation.yaml
vendored
|
@ -15,7 +15,7 @@ permissions:
|
|||
jobs:
|
||||
build:
|
||||
name: Build and publish documentation
|
||||
runs-on: macos-latest
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
@ -24,11 +24,15 @@ jobs:
|
|||
path: "**/cpm_modules"
|
||||
key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
|
||||
|
||||
- name: Install dependencies
|
||||
- name: Install python dependencies
|
||||
run: |
|
||||
brew install doxygen
|
||||
pip3 install jinja2 Pygments
|
||||
pip3 install jinja2==3.1.6 Pygments==2.19.1
|
||||
|
||||
- name: Install Doxygen
|
||||
uses: ssciwr/doxygen-install@v1
|
||||
with:
|
||||
version: "1.13.2"
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
cmake -Sdocumentation -Bbuild
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue