Rename resolve_from_if_absolute
to try_resolve_from
#3511
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: website | |
on: | |
pull_request: | |
concurrency: | |
group: website-build-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt update | |
- run: sudo apt install -y doxygen | |
- run: > | |
cmake -S . -B ./build | |
-DCMAKE_BUILD_TYPE:STRING=Release | |
-DJSONTOOLKIT_URI:BOOL=OFF | |
-DJSONTOOLKIT_JSON:BOOL=OFF | |
-DJSONTOOLKIT_JSONSCHEMA:BOOL=OFF | |
-DJSONTOOLKIT_JSONPOINTER:BOOL=OFF | |
-DJSONTOOLKIT_TESTS:BOOL=OFF | |
-DJSONTOOLKIT_DOCS:BOOL=ON | |
- run: cmake --build ./build --config Release --target doxygen |