Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lrineau committed Jul 19, 2023
1 parent a89f0f1 commit 57fd084
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,8 @@
/secret.file
testsuite/*
.vscode
/cgal/
/cgal.tar.gz
/testresults/installation.log
/testresults/list_test_packages
/testresults/package_installation.log
3 changes: 3 additions & 0 deletions test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ function dockerbuild() {
function dockerbuildandtest() {
dockerbuild $1 $2
docker run --rm -v $PWD/cgal:/cgal cgal/testsuite-docker:$1 bash -c 'cmake -DWITH_examples=ON /cgal && cmake --build . -t terrain'
if command -v python3 >/dev/null; then
python3 ./test_container/test_container.py --image cgal/testsuite-docker:$1 --cgal-dir $HOME/cgal
fi
}

if [ "$1" = ArchLinux ]
Expand Down
2 changes: 1 addition & 1 deletion test_container/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.11...3.22)
cmake_minimum_required(VERSION 3.1...3.26)
project(TestCGAL C CXX) # To Enable Compiler Checks

# We output results at the end, because some Find scripts do not
Expand Down

0 comments on commit 57fd084

Please sign in to comment.