-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
314 changed files
with
19,561 additions
and
7,282 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Run Continuous Integration on macOS 11 Big Sur, with native Clang and | ||
# without Fortran. | ||
|
||
# This mainly checks for issues/regressions in the native build | ||
name: compatibility_macos_bigsur_11_clang | ||
on: | ||
schedule: | ||
- cron: '30 0 * * 6' | ||
push: | ||
branches: | ||
- 'release-*' | ||
- fix_native_compatibility_ci | ||
jobs: | ||
build: | ||
runs-on: macos-11 | ||
timeout-minutes: 30 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install dependencies | ||
run: | | ||
python3 -m pip install --upgrade pip | ||
pip3 install tox tox-gh-actions | ||
brew install openmpi | ||
- name: Run all tests on macOS Big Sur 11 with Clang | ||
run: cd ${GITHUB_WORKSPACE} && make test test_examples | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Run Continuous Integration on macOS 11 Big Sur with GCC | ||
# This includes Fortran support | ||
# This mainly checks for issues/regressions in the native build | ||
name: compatibility_macos_bigsur_11_gcc_gfortran | ||
on: | ||
schedule: | ||
- cron: '00 1 * * 6' | ||
push: | ||
branches: | ||
- 'release-*' | ||
- fix_native_compatibility_ci | ||
jobs: | ||
build: | ||
runs-on: macos-11 | ||
timeout-minutes: 30 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install dependencies | ||
run: | | ||
brew install gcc | ||
brew install openmpi | ||
python3 -m pip install --upgrade pip | ||
pip3 install tox tox-gh-actions | ||
- name: Run all tests | ||
run: cd ${GITHUB_WORKSPACE} && CXX=g++-12 OMPI_CXX=g++-12 FC=gfortran-12 OMPI_FC=gfortran-12 make test test_examples | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# 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@v2 | ||
|
||
- name: Install dependencies | ||
run: | | ||
python3 -m pip install --upgrade pip | ||
pip3 install tox tox-gh-actions | ||
brew install openmpi | ||
- name: Run all tests on macOS Monterey 12 with Clang | ||
run: cd ${GITHUB_WORKSPACE} && make test test_examples |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Run Continuous Integration on macOS 12 Monterey with GCC | ||
# This includes Fortran support | ||
# This mainly checks for issues/regressions in the native build | ||
name: compatibility_macos_monterey_12_gcc_gfortran | ||
on: | ||
schedule: | ||
- cron: '00 2 * * 6' | ||
push: | ||
branches: | ||
- 'release-*' | ||
- fix_native_compatibility_ci | ||
jobs: | ||
build: | ||
runs-on: macos-12 | ||
timeout-minutes: 30 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install dependencies | ||
run: | | ||
brew install gcc | ||
brew install openmpi | ||
python3 -m pip install --upgrade pip | ||
pip3 install tox tox-gh-actions | ||
- name: Run all tests | ||
run: cd ${GITHUB_WORKSPACE} && CXX=g++-12 OMPI_CXX=g++-12 FC=gfortran-12 OMPI_FC=gfortran-12 make test test_examples | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Run Continuous Integration on macOS 13 Ventura, with native Clang and | ||
# without Fortran. | ||
|
||
# This mainly checks for issues/regressions in the native build | ||
name: compatibility_macos_ventura_13_clang | ||
on: | ||
schedule: | ||
- cron: '30 2 * * 6' | ||
push: | ||
branches: | ||
- 'release-*' | ||
- fix_native_compatibility_ci | ||
jobs: | ||
build: | ||
runs-on: macos-13 | ||
timeout-minutes: 30 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install dependencies | ||
run: | | ||
brew install openmpi | ||
brew install pkg-config | ||
python3 -m pip install --upgrade pip | ||
pip3 install tox tox-gh-actions | ||
- name: Run all tests on macOS Ventura 13 with Clang | ||
run: cd ${GITHUB_WORKSPACE} && make test test_examples | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Run Continuous Integration on macOS 13 Ventura with GCC | ||
# This includes Fortran support | ||
# This mainly checks for issues/regressions in the native build | ||
name: compatibility_macos_ventura_13_gcc_gfortran | ||
on: | ||
schedule: | ||
- cron: '00 3 * * 6' | ||
push: | ||
branches: | ||
- 'release-*' | ||
- fix_native_compatibility_ci | ||
jobs: | ||
build: | ||
runs-on: macos-13 | ||
timeout-minutes: 30 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install dependencies | ||
run: | | ||
brew install gcc | ||
brew install openmpi | ||
brew install pkg-config | ||
python3 -m pip install --upgrade pip | ||
pip3 install tox tox-gh-actions | ||
- name: Run all tests | ||
run: cd ${GITHUB_WORKSPACE} && CXX=g++-12 OMPI_CXX=g++-12 FC=gfortran-12 OMPI_FC=gfortran-12 make test test_examples | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Run Continuous Integration on every push | ||
name: python_compatibility_macos | ||
on: [push, pull_request] | ||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
timeout-minutes: 10 | ||
strategy: | ||
matrix: | ||
python-version: ["3.7", "3.8", "3.9", "3.10"] | ||
|
||
steps: | ||
- name: Check out the source code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Cache Tox | ||
uses: actions/cache@v1 | ||
with: | ||
path: ${{ github.workspace }}/.tox | ||
key: python-macos-${{ matrix.python-version }}-tox | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install tox tox-gh-actions | ||
- name: Run the test suite | ||
run: make test_python_only |
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
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
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
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
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
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
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
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
Oops, something went wrong.