osx-serial:
# simple serial build using apple clang
- name: OSX serial
- runs-on: [macos-latest]
+ name: ${{ matrix.os }} serial
+ runs-on: ${{ matrix.os }}
#
# The following condition only runs the workflow on 'push' or if the
#
# if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
+ strategy:
+ fail-fast: false
+ matrix:
+ os: [macos-13, macos-14]
+
steps:
- uses: actions/checkout@v4
- name: info
osx-parallel64:
# MPI build using apple clang and 64 bit indices
- name: OSX parallel 64bit
- runs-on: [macos-latest]
+ name: ${{ matrix.os }} parallel 64bit
+ runs-on: ${{ matrix.os }}
#
# The following condition only runs the workflow on 'push' or if the
#
# if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
+ strategy:
+ fail-fast: false
+ matrix:
+ os: [macos-13, macos-14]
+
steps:
- uses: actions/checkout@v4
- name: setup