Fix results perm check #30
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: cmake clang 18 | |
| "on": | |
| push: | |
| branches: | |
| - main | |
| - devel | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Compiles with clang 18, using cmake | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: install packages | |
| run: sudo apt install build-essential cmake nettle-dev time clang-18 | |
| - name: configure | |
| run: cmake -B build -S inofficial_cmake/ -DCMAKE_CXX_COMPILER=clang++-18 | |
| - name: build | |
| run: cmake --build build | |
| - name: test | |
| run: ctest --test-dir build --output-on-failure |