run test #253
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: run tests | |
run-name: run test | |
on: | |
pull_request: | |
branches: | |
- master | |
- ws* | |
jobs: | |
run-tests: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
compiler: | |
- gcc | |
- clang | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: sudo apt-get install libxerces-c-dev | |
- run: cmake -DCMAKE_TOOLCHAIN_FILE=./toolchains/${{ matrix.compiler }}-test.cmake -G 'Unix Makefiles' -S $(pwd) -B $(pwd)/build | |
- run: cd $(pwd)/build && make all -j5 && ctest |