-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (29 loc) · 771 Bytes
/
docs.yml
File metadata and controls
35 lines (29 loc) · 771 Bytes
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
name: DOCS
on:
pull_request:
branches:
- '*'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive # ✅ ensure Catch2 is pulled in
- name: Install gcc14
run: |
sudo apt update
sudo apt install -y gcc-14 g++-14
shell: bash
- name: Install Doxygen
run: |
sudo apt update
sudo apt install -y doxygen
- name: Build and Test Project
run: |
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DMSTD_BUILD_DOCS=ON
make docs # at the moment only building docs to verify no doc-related build issues
env:
CC: gcc-14
CXX: g++-14