-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into CORE-boost_mp_number-GF
- Loading branch information
Showing
3,917 changed files
with
417,222 additions
and
249,307 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,29 @@ | ||
#!/bin/bash | ||
|
||
set -ex | ||
|
||
sudo apt-get update | ||
sudo apt-get install -y libmpfr-dev \ | ||
libeigen3-dev qtbase5-dev libqt5sql5-sqlite libqt5opengl5-dev qtscript5-dev \ | ||
libqt5svg5-dev qttools5-dev qttools5-dev-tools libboost-dev libinsighttoolkit4-dev zsh | ||
#update cmake to 3.18.4 | ||
sudo apt-get install -y \ | ||
libmpfr-dev \ | ||
libtbb-dev \ | ||
libmetis-dev \ | ||
libssh-dev \ | ||
libeigen3-dev \ | ||
qtbase5-dev libqt5sql5-sqlite libqt5opengl5-dev qtscript5-dev libqt5websockets5-dev \ | ||
libqt5svg5-dev qttools5-dev qttools5-dev-tools \ | ||
libboost-dev libboost-serialization-dev libboost-iostreams-dev libboost-filesystem-dev libboost-filesystem-dev \ | ||
libvtk9-dev libgdcm-tools libvtkgdcm-dev libunwind-dev \ | ||
libinsighttoolkit5-dev \ | ||
libceres-dev \ | ||
libglpk-dev \ | ||
libopencv-dev \ | ||
zsh \ | ||
qt6-base-dev qt6-declarative-dev libqt6svg6-dev libqt6websockets6-dev | ||
|
||
#update CMake | ||
sudo apt purge --auto-remove cmake | ||
cd /tmp | ||
wget https://cmake.org/files/v3.18/cmake-3.18.4-Linux-x86_64.sh | ||
sudo sh cmake-3.18.4-Linux-x86_64.sh --skip-license --prefix=/usr/local | ||
rm cmake-3.18.4-Linux-x86_64.sh | ||
CMAKE_VER=$(curl --silent https://cmake.org/files/LatestRelease/cmake-latest-files-v1.json | jq -r .version.string) | ||
wget https://cmake.org/files/LatestRelease/cmake-$CMAKE_VER-linux-x86_64.sh | ||
sudo sh cmake-*.sh --skip-license --prefix=/usr/local | ||
rm cmake-*.sh |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/github-script@v6 | ||
- uses: actions/github-script@v7 | ||
id: get_round | ||
with: | ||
result-encoding: string | ||
|
@@ -38,7 +38,7 @@ jobs: | |
} | ||
} | ||
return 'stop' | ||
- uses: actions/github-script@v6 | ||
- uses: actions/github-script@v7 | ||
if: steps.get_round.outputs.result != 'stop' | ||
id: get_pr_number | ||
with: | ||
|
@@ -49,7 +49,7 @@ jobs: | |
return pr_number | ||
- name: Emoji-comment | ||
uses: actions/github-script@v6 | ||
uses: actions/github-script@v7 | ||
if: steps.get_round.outputs.result != 'stop' | ||
with: | ||
script: | | ||
|
@@ -60,7 +60,7 @@ jobs: | |
content: 'rocket' | ||
}) | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
name: "checkout branch" | ||
if: steps.get_round.outputs.result != 'stop' | ||
with: | ||
|
@@ -75,7 +75,7 @@ jobs: | |
sudo apt-get update && sudo apt-get install -y graphviz ssh bibtex2html | ||
sudo pip install lxml | ||
sudo pip install pyquery | ||
wget --no-verbose -O doxygen_exe https://cgal.geometryfactory.com/~cgaltest/doxygen_1_8_13_patched/doxygen | ||
wget --no-verbose -O doxygen_exe https://cgal.geometryfactory.com/~cgaltest/doxygen_1_9_6_patched/doxygen | ||
sudo mv doxygen_exe /usr/bin/doxygen | ||
sudo chmod +x /usr/bin/doxygen | ||
git config --global user.email "[email protected]" | ||
|
@@ -104,8 +104,8 @@ jobs: | |
echo "DoxygenError=No package affected." >> $GITHUB_OUTPUT | ||
exit 1 | ||
fi | ||
cd build_doc && make -j2 doc | ||
make -j2 doc_with_postprocessing 2>tmp.log | ||
cd build_doc && make -j$(nproc) doc | ||
make -j$(nproc) doc_with_postprocessing 2>tmp.log | ||
if [ -s tmp.log ]; then | ||
content=`cat ./tmp.log` | ||
delimiter="$(openssl rand -hex 8)" | ||
|
@@ -136,7 +136,7 @@ jobs: | |
fi | ||
- name: Post address | ||
uses: actions/github-script@v6 | ||
uses: actions/github-script@v7 | ||
if: ${{ success() && steps.get_round.outputs.result != 'stop' }} | ||
with: | ||
script: | | ||
|
@@ -154,13 +154,13 @@ jobs: | |
- name: Post error | ||
env: | ||
ERRORMSG: ${{steps.build_and_run.outputs.DoxygenError}} | ||
uses: actions/github-script@v6 | ||
uses: actions/github-script@v7 | ||
if: ${{ failure() && steps.get_round.outputs.result != 'stop' }} | ||
with: | ||
script: | | ||
const error = process.env.ERRORMSG | ||
const job_url = `${context.serverUrl}/CGAL/cgal/actions/runs/${context.runId}` | ||
const msg = "There was an error while building the doc: \n"+error + "\n" + job_url | ||
const msg = "There was an error while building the doc: \n```\n"+error + "\n```\n" + job_url | ||
github.rest.issues.createComment({ | ||
owner: "CGAL", | ||
repo: "cgal", | ||
|
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# SPDX-FileCopyrightText: 2020 Free Software Foundation Europe e.V. <https://fsfe.org> | ||
# | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
name: REUSE Compliance Check | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
reuse: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: REUSE version | ||
uses: fsfe/reuse-action@v2 | ||
with: | ||
args: --version | ||
- name: REUSE lint | ||
uses: fsfe/reuse-action@v2 | ||
with: | ||
args: --include-submodules lint | ||
- name: REUSE SPDX SBOM | ||
uses: fsfe/reuse-action@v2 | ||
with: | ||
args: spdx | ||
- name: install dependencies | ||
run: sudo apt-get install -y cmake | ||
- name: Create CGAL internal release | ||
run: | | ||
mkdir -p ./release | ||
cmake -DDESTINATION=./release -DCGAL_VERSION=9.9 -P ./Scripts/developer_scripts/cgal_create_release_with_cmake.cmake | ||
- name: REUSE lint release tarball | ||
uses: fsfe/reuse-action@v2 | ||
with: | ||
args: --root ./release/CGAL-9.9 --include-submodules lint |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: CGAL | ||
Upstream-Contact: CGAL Editorial Board <[email protected]> | ||
Source: https://github.com/CGAL/cgal | ||
|
||
Files: .* *.cmake *.md .github/* Maintenance/* */TODO */doc/* */deb/* */applications/* */doc_html/* */scripts/* */developer_scripts/* */demo/* */examples/* */src/* */test/* */benchmarks/* */benchmark/* */package_info/* */data/* */cmake/* | ||
Copyright: 1995-2023 The CGAL Project | ||
License: CC0-1.0 | ||
|
||
Files: CMakeLists.txt GraphicsView/include/CGAL/Qt/ImageInterface.ui GraphicsView/include/CGAL/Qt/resources/qglviewer-icon.xpm Installation/AUTHORS Installation/CMakeLists.txt Installation/README Installation/auxiliary/cgal_create_cmake_script.1 Installation/auxiliary/gmp/README Installation/include/CGAL/license/gpl_package_list.txt MacOSX/auxiliary/cgal_app.icns copyright | ||
Copyright: 1995-2023 The CGAL Project | ||
License: CC0-1.0 |
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
Oops, something went wrong.