Test the Installation in Github Actions

This commit is contained in:
Laurent Rineau 2021-10-06 15:00:41 +02:00
parent c5d7200d7a
commit d21bec765a
1 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ jobs:
cmake-testsuite:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.0.0
- name: install dependencies
@ -15,7 +15,7 @@ jobs:
run: |
set -e
mkdir build && cd build && CXX=clang++ cmake -DWITH_examples=ON -DWITH_tests=ON -DWITH_demos=ON -DBUILD_TESTING=ON ..
ctest -L CGAL_cmake_testsuite
ctest -L Installation -j $(getconf _NPROCESSORS_ONLN)
cmake-testsuite-with-qt5:
@ -29,4 +29,4 @@ jobs:
run: |
set -e
mkdir build && cd build && CXX=clang++ cmake -DWITH_examples=ON -DWITH_tests=ON -DWITH_demos=ON -DBUILD_TESTING=ON ..
ctest -L CGAL_cmake_testsuite
ctest -L Installation -j $(getconf _NPROCESSORS_ONLN)