Upgrade Core to 06675bf5ea7ad1ff0c70650d1e7d0b0bbbd507fe
#1239
Workflow file for this run
This file contains hidden or 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 | |
| -DBLAZE_COMPILER:BOOL=OFF | |
| -DBLAZE_EVALUATOR:BOOL=OFF | |
| -DBLAZE_OUTPUT:BOOL=OFF | |
| -DBLAZE_LINTER:BOOL=OFF | |
| -DBLAZE_TEST:BOOL=OFF | |
| -DBLAZE_TESTS:BOOL=OFF | |
| -DBLAZE_DOCS:BOOL=ON | |
| - run: cmake --build ./build --config Release --target doxygen |