-
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 Gaussian_map_3-efif
- Loading branch information
Showing
5,852 changed files
with
523,450 additions
and
338,151 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
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,12 +1,29 @@ | ||
#!/bin/bash | ||
sudo add-apt-repository ppa:mikhailnov/pulseeffects -y | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: remove_labels | ||
on: | ||
pull_request_target: | ||
types: [synchronize] | ||
workflow_dispatch: | ||
jobs: | ||
remove_label: | ||
runs-on: ubuntu-latest | ||
if: contains(github.event.pull_request.labels.*.name, 'Tested') | ||
name: remove label | ||
steps: | ||
- name: removelabel | ||
uses: actions/github-script@v7 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
github.rest.issues.removeLabel({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: context.issue.number, | ||
name: "Tested", | ||
}); | ||
- name: Post address | ||
uses: actions/github-script@v7 | ||
if: ${{ success() }} | ||
with: | ||
script: | | ||
github.rest.issues.createComment({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: context.issue.number, | ||
body: "This pull-request was previously marked with the label `Tested`, but has been modified with new commits. That label has been removed." | ||
}) |
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 |
---|---|---|
@@ -1,32 +1,35 @@ | ||
name: CMake Testsuite | ||
|
||
on: [push, pull_request] | ||
on: [push, pull_request, workflow_dispatch] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
cmake-testsuite: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2.0.0 | ||
- uses: actions/checkout@v4 | ||
- name: install dependencies | ||
run: sudo apt-get install -y libboost-dev libboost-program-options-dev libmpfr-dev libeigen3-dev | ||
- name: configure all | ||
run: | | ||
set -e | ||
mkdir build && cd build && CXX=clang++ cmake -DWITH_examples=ON -DWITH_tests=ON -DWITH_demos=ON -DBUILD_TESTING=ON .. | ||
mkdir build && cd build && CXX=clang++ cmake -DWITH_examples=ON -DWITH_tests=ON -DWITH_demos=ON -DCGAL_ENABLE_TESTING=ON .. | ||
ctest -L Installation -j $(getconf _NPROCESSORS_ONLN) | ||
cmake-testsuite-with-qt5: | ||
cmake-testsuite-with-qt: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2.0.0 | ||
- uses: actions/checkout@v4 | ||
- name: install dependencies | ||
run: sudo bash -e .github/install.sh | ||
- name: configure all | ||
run: | | ||
set -e | ||
mkdir build && cd build && CXX=clang++ cmake -DWITH_examples=ON -DWITH_tests=ON -DWITH_demos=ON -DBUILD_TESTING=ON .. | ||
mkdir build && cd build && CXX=clang++ cmake -DWITH_examples=ON -DWITH_tests=ON -DWITH_demos=ON -DCGAL_ENABLE_TESTING=ON .. | ||
ctest -L Installation -j $(getconf _NPROCESSORS_ONLN) |
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
Oops, something went wrong.