Skip to content

Fix-vs2019-build

Fix-vs2019-build #29

Workflow file for this run

name: ubuntu-nvhpc
on:
pull_request:
branches:
- main
- dev
jobs:
builds-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
optimization-type: ["Debug", "Release"]
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'recursive'
- uses: fortran-lang/setup-fortran@v1
id: setup-fortran
with:
compiler: nvidia-hpc
version: '24.5'
- name: Build application
run: |
cmake -S . -B build -DCMAKE_BUILD_TYPE=${{matrix.optimization-type}}
cmake --build build -j