Update of multi-column generators doc #359
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: macOS | |
on: [push, pull_request] | |
jobs: | |
########################################## | |
ci-macos-debug: | |
strategy: | |
matrix: | |
os: [macos-13, macos-14, macos-15] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Installation of dependencies | |
run: | | |
brew install \ | |
boost gdal curl qt6 \ | |
gnuplot | |
- name: Installation of pandoc | |
uses: r-lib/actions/setup-pandoc@v2 | |
- name: Installation of latex | |
uses: teatimeguest/setup-texlive-action@v3 | |
with: | |
packages: | | |
scheme-full | |
bibtex | |
- name: Checkout of source code | |
uses: actions/checkout@v3 | |
- name: Preparation | |
run: | | |
echo "$(brew --prefix qt6)/bin" >> $GITHUB_PATH | |
mkdir ./_build | |
- name: Configuration | |
run: cmake .. -DCMAKE_PREFIX_PATH=$(brew --prefix qt6)/lib/cmake | |
working-directory: ./_build | |
- name: Build | |
run: make -j 2 | |
working-directory: ./_build | |
- name: Testing | |
run: ctest --output-on-failure | |
working-directory: ./_build | |
########################################## | |
ci-macos-release: | |
strategy: | |
matrix: | |
os: [macos-13, macos-14, macos-15] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Installation of dependencies | |
run: | | |
brew install \ | |
boost gdal curl qt6 \ | |
gnuplot | |
- name: Installation of pandoc | |
uses: r-lib/actions/setup-pandoc@v2 | |
- name: Checkout of source code | |
uses: actions/checkout@v3 | |
- name: Preparation | |
run: | | |
echo "$(brew --prefix qt6)/bin" >> $GITHUB_PATH | |
mkdir ./_build | |
- name: Configuration | |
run: cmake .. -DCMAKE_PREFIX_PATH=$(brew --prefix qt6)/lib/cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local | |
working-directory: ./_build | |
- name: Build | |
run: make -j 2 | |
working-directory: ./_build |