Mesh_3 edge_distance criterion : an upper bound for the distances of the feature edge to the input feature #9991
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: CMake Testsuite | |
on: [push, pull_request, workflow_dispatch] | |
permissions: | |
contents: read | |
jobs: | |
cmake-testsuite: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install dependencies | |
run: sudo apt-get install -y libboost-dev libboost-program-options-dev libmpfr-dev libeigen3-dev | |
- name: configure all | |
run: | | |
set -e | |
mkdir build && cd build && CXX=clang++ cmake -DWITH_examples=ON -DWITH_tests=ON -DWITH_demos=ON -DBUILD_TESTING=ON .. | |
ctest -L Installation -j $(getconf _NPROCESSORS_ONLN) | |
cmake-testsuite-with-qt5: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install dependencies | |
run: sudo bash -e .github/install.sh | |
- name: configure all | |
run: | | |
set -e | |
mkdir build && cd build && CXX=clang++ cmake -DWITH_examples=ON -DWITH_tests=ON -DWITH_demos=ON -DBUILD_TESTING=ON .. | |
ctest -L Installation -j $(getconf _NPROCESSORS_ONLN) |