Surface_sweep_2: Handle new overlap on the right of an event that is interior to a curve #10719
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] | |
jobs: | |
cmake-testsuite: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- 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/[email protected] | |
- 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) |