-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from NCAR/main
v0.6.0
- Loading branch information
Showing
77 changed files
with
1,472 additions
and
1,155 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Docker | ||
|
||
on: [push, pull_request] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
docker-build-and-test: | ||
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | ||
name: Build and Test - ${{ matrix.dockerfile }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest] | ||
dockerfile: | ||
- Dockerfile | ||
- Dockerfile.memcheck | ||
- Dockerfile.fortran-intel | ||
- Dockerfile.fortran-gcc | ||
- Dockerfile.fortran-nvhpc | ||
- Dockerfile.openmp | ||
- Dockerfile.mpi | ||
- Dockerfile.mpi_openmp | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Delete huge unnecessary tools folder | ||
run: rm -rf /opt/hostedtoolcache | ||
|
||
- name: Build Docker image | ||
run: docker build -t tuvx -f docker/${{ matrix.dockerfile }} . | ||
|
||
- name: Run tests in container | ||
if: matrix.dockerfile != 'Dockerfile.coverage' | ||
run: docker run --name test-container -t tuvx bash -c 'make test ARGS="--rerun-failed --output-on-failure -j8"' | ||
|
||
- name: Run coverage tests in container | ||
if: matrix.dockerfile == 'Dockerfile.coverage' | ||
run: docker run --name test-container -t tuvx bash -c 'make coverage ARGS="--rerun-failed --output-on-failure -j8"' | ||
|
||
- name: Copy coverage from container | ||
if: matrix.dockerfile == 'Dockerfile.coverage' | ||
run: docker cp test-container:build/coverage.info . | ||
|
||
- name: Upload coverage report | ||
if: matrix.dockerfile == 'Dockerfile.coverage' | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: coverage.info |
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,63 @@ | ||
name: Mac | ||
|
||
on: [push, pull_request] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
c_cxx: | ||
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
compiler: | ||
- { cpp: g++-11, c: gcc-11} | ||
- { cpp: g++-12, c: gcc-12} | ||
- { cpp: g++-13, c: gcc-13} | ||
- { cpp: clang++, c: clang} | ||
build_type: [Debug, Release] | ||
env: | ||
CC: ${{ matrix.compiler.c }} | ||
CXX: ${{ matrix.compiler.cpp }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Run Cmake | ||
run: cmake -S . -B build -D CMAKE_BUILD_TYPE=${{ matrix.build_type }} | ||
|
||
- name: Build | ||
run: cmake --build build --parallel 10 | ||
|
||
- name: Run tests | ||
run: | | ||
cd build | ||
ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure . --verbose -j 10 | ||
fortran: | ||
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
gcc_version: [11, 12, 13] | ||
build_type: [Debug, Release] | ||
env: | ||
FC: gfortran-${{ matrix.gcc_version }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install dependencies | ||
run: brew install netcdf netcdf-fortran | ||
|
||
- name: Run Cmake | ||
run: cmake -S . -B build -D CMAKE_BUILD_TYPE=${{ matrix.build_type }} -D MUSICA_BUILD_FORTRAN_INTERFACE=ON | ||
|
||
- name: Build | ||
run: cmake --build build --parallel 10 | ||
|
||
- name: Run tests | ||
run: | | ||
cd build | ||
ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure . --verbose -j 10 |
This file was deleted.
Oops, something went wrong.
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,65 @@ | ||
name: Ubuntu | ||
|
||
on: [push, pull_request] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
c_cxx: | ||
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
compiler: | ||
- { cpp: g++-11, c: gcc-11} | ||
- { cpp: g++-12, c: gcc-12} | ||
- { cpp: g++-13, c: gcc-13} | ||
- { cpp: clang++, c: clang} | ||
build_type: [Debug, Release] | ||
env: | ||
CC: ${{ matrix.compiler.c }} | ||
CXX: ${{ matrix.compiler.cpp }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Run Cmake | ||
run: cmake -S . -B build -D CMAKE_BUILD_TYPE=${{ matrix.build_type }} | ||
|
||
- name: Build | ||
run: cmake --build build --verbose | ||
|
||
- name: Run tests | ||
run: | | ||
cd build | ||
ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure . --verbose -j 10 | ||
fortran: | ||
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
gcc_version: [11, 12, 13] | ||
build_type: [Debug, Release] | ||
env: | ||
FC: gfortran-${{ matrix.gcc_version }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libnetcdf-dev netcdf-bin libnetcdff-dev | ||
- name: Run Cmake | ||
run: cmake -S . -B build -D CMAKE_BUILD_TYPE=${{ matrix.build_type }} -D MUSICA_BUILD_FORTRAN_INTERFACE=ON | ||
|
||
- name: Build | ||
run: cmake --build build --parallel 10 | ||
|
||
- name: Run tests | ||
run: | | ||
cd build | ||
ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure . --verbose -j 10 |
Oops, something went wrong.