TestSuite: List of third-party libraries #9438
Workflow file for this run
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
name: CMake Test Merge Branch | |
on: [push, pull_request, workflow_dispatch] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install dependencies | |
run: | | |
.github/install.sh | |
set -x | |
sudo apt-get update && sudo apt-get install -y graphviz ssh bibtex2html | |
sudo pip install lxml | |
sudo pip install 'pyquery==1.4.1' # it seems to be the last py2 compatible version | |
wget --no-verbose -O doxygen_exe https://cgal.geometryfactory.com/~cgaltest/doxygen_1_8_13_patched/doxygen | |
sudo mv doxygen_exe /usr/bin/doxygen | |
sudo chmod +x /usr/bin/doxygen | |
git config --global user.email "[email protected]" | |
git config --global user.name "cgaltest" | |
- name: Run checks | |
run: | | |
zsh Scripts/developer_scripts/test_merge_of_branch HEAD | |
#test dependencies | |
bash Scripts/developer_scripts/cgal_check_dependencies.sh --check_headers /usr/bin/doxygen | |