Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try NVHPC #265

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
container: ghcr.io/gridtools/gridtools-base:${{ matrix.compiler }}
strategy:
matrix:
compiler: [gcc-8, gcc-10, gcc-11, gcc-12, gcc-13, clang-10, clang-15, clang-16, clang-17, clang-18]
compiler: [nvhpc-24.5]
build_type: [Debug, Release]
exclude:
- compiler: gcc-10
Expand All @@ -35,7 +35,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Enable Fortran
if: startsWith(matrix.compiler, 'gcc')
if: startsWith(matrix.compiler, 'gcc') || startsWith(matrix.compiler, 'nvhpc')
run: echo "TEST_FORTRAN=ON" >> $GITHUB_ENV
- name: Install python modules
run: pip3 install --user nose-py3 numpy
Expand All @@ -46,9 +46,9 @@ jobs:
path: pfunit
key: ${{ matrix.compiler }}-pfunit
- name: Install pFUnit
if: startsWith(matrix.compiler, 'gcc') && steps.cache-pfunit.outputs.cache-hit != 'true'
if: (startsWith(matrix.compiler, 'gcc') || startsWith(matrix.compiler, 'nvhpc')) && steps.cache-pfunit.outputs.cache-hit != 'true'
env:
PFUNIT_VERSION: 4.6.3
PFUNIT_VERSION: 4.9.0
run: |
apt-get update && apt-get -y install m4
git clone --branch v${PFUNIT_VERSION} --depth 1 https://github.com/Goddard-Fortran-Ecosystem/pFUnit.git
Expand Down
Loading