Bump version: 2.8.1 → 2.9.0 #541
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 | |
# TODO: Possibly add on-push-paths triggers below to only trigger self-tests when .c, .h, .cc, | |
# .cmake, .py, .sh, CMakeLists.txt and workflow files are pushed | |
on: push | |
# Environment variables that can be read during jobs | |
env: | |
CTEST_OUTPUT_ON_FAILURE: 1 | |
OOMPH_INSTALL_PATH: "${{ github.workspace }}/.local" | |
# ------------------------------------------------------------------------------ | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
build_info: | |
[ | |
{ mpi: "OFF", cmake_preset: ci }, | |
{ mpi: "ON", cmake_preset: ci-mpi }, | |
] | |
runs-on: macos-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: brew install cmake ninja openblas fd && brew reinstall gcc | |
- name: Install MPI dependencies (if required) | |
if: matrix.build_info.mpi == 'ON' | |
run: brew install open-mpi | |
- name: Configure | |
run: cmake --preset ${{ matrix.build_info.cmake_preset }} --install-prefix ${{ env.OOMPH_INSTALL_PATH }} -B build | |
env: | |
# Where to look to find the Homebrew-installed OpenBLAS libraries | |
# FIXME: Decide how to specify the OpenBLAS version or replace the oomph BLAS/LAPACK libraries | |
CMAKE_PREFIX_PATH: "/usr/local/Cellar/openblas/0.3.21" | |
- name: Build | |
run: cmake --build build | |
- name: Install | |
run: cmake --install build | |
- name: Configure demo drivers | |
run: cmake -G Ninja -S demo_drivers -B demo_drivers/build | |
env: | |
# Tell the demo drivers where to find the installed oomph-lib library | |
CMAKE_PREFIX_PATH: ${{ env.OOMPH_INSTALL_PATH }} | |
- name: Run self-tests | |
id: self_tests | |
run: ctest --preset ci --test-dir demo_drivers/build -j $(sysctl -n hw.logicalcpu) | |
continue-on-error: true | |
- name: Upload validation log file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: validation-${{ runner.os }}-MPI_${{ matrix.build_info.mpi }}.log | |
path: ./validation.log | |
- name: Propagate CTest test status | |
if: steps.self_tests.outcome == 'failure' | |
run: exit 8 | |
# ------------------------------------------------------------------------------ |