Skip to content

Commit

Permalink
Drop support for ubuntu 20.04, add ci for 22.04 alongside 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
ipadjen committed Oct 3, 2024
1 parent a0bd1c1 commit 1f5b4ce
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,23 @@ jobs:
mkdir build && cd build
cmake .. -DCGAL_DIR=${{ github.workspace }}/CGAL-6.0 && make -j4
build_linux_2004:
runs-on: ubuntu-20.04
build_linux_2204:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install libgmp-dev libmpfr-dev libboost-all-dev libeigen3-dev libomp-dev libgdal-dev
- name: Download CGAL 5.6.1
- name: Download CGAL 6.0
run: |
wget https://github.com/CGAL/cgal/releases/download/v5.6.1/CGAL-5.6.1-library.tar.xz -P ${{ github.workspace }}
wget https://github.com/CGAL/cgal/releases/download/v6.0/CGAL-6.0-library.tar.xz -P ${{ github.workspace }}
cd ${{ github.workspace }}
tar -xvf CGAL-5.6.1-library.tar.xz
tar -xvf CGAL-6.0-library.tar.xz
- name: Build
run: |
mkdir build && cd build
cmake .. -DCGAL_DIR=${{ github.workspace }}/CGAL-5.6.1 && make -j4
cmake .. -DCGAL_DIR=${{ github.workspace }}/CGAL-6.0 && make -j4
build_macos:
runs-on: macos-latest
Expand Down

0 comments on commit 1f5b4ce

Please sign in to comment.