Skip to content

Commit

Permalink
Install newer CGAL also in testing.yml.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjziebarth committed Sep 22, 2024
1 parent 75c2e3c commit a28e20b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ jobs:
tar --bzip2 -xf boost_1_86_0.tar.bz2 -C boost-dl
sudo rm -r /usr/include/boost
sudo cp -r boost-dl/boost_1_86_0/boost /usr/include
# Monkey-patched install of newer CGAL verison:
wget -q https://github.com/CGAL/cgal/releases/download/v5.6.1/CGAL-5.6.1-library.tar.xz
mkdir cgal-dl
tar -xf CGAL-5.6.1-library.tar.xz -C cgal-dl
rm CGAL-5.6.1-library.tar.xz
rm -r /usr/include/CGAL
cp -r cgal-dl/CGAL-5.6.1/include/CGAL /usr/include
rm -r cgal-dl
# Python installs:
python3 -m pip install --upgrade pip
sudo apt purge python3-setuptools
Expand Down

0 comments on commit a28e20b

Please sign in to comment.