compatibility_macos_monterey_12_clang #198
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
# Run Continuous Integration on macOS 12 Monterey, with native Clang and | |
# without Fortran. | |
# This mainly checks for issues/regressions in the native build | |
name: compatibility_macos_monterey_12_clang | |
on: | |
schedule: | |
- cron: '30 1 * * 6' | |
push: | |
branches: | |
- 'release-*' | |
- fix_native_compatibility_ci | |
jobs: | |
build: | |
runs-on: macos-12 | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest | |
- name: Install dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
pip3 install tox tox-gh-actions | |
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install openmpi | |
- name: Run all tests on macOS Monterey 12 with Clang | |
run: cd ${GITHUB_WORKSPACE} && make test test_examples |