Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions .github/workflows/meson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,18 @@ jobs:
arch: 'arm64'
int: '64'
mode: 'shared'
# - os: ubuntu-latest
# compiler: nvidia-hpc
# version: '24.05'
- os: ubuntu-latest
arch: 'x64'
version: '24.11'
Comment thread
amontoison marked this conversation as resolved.
Outdated
compiler: nvidia-hpc
int: '32'
mode: 'static'
- os: ubuntu-latest
arch: 'x64'
version: '25.1'
compiler: nvidia-hpc
int: '64'
mode: 'static'
runs-on: ${{ matrix.os }}
steps:
- name: Check out CUTEST
Expand Down Expand Up @@ -142,7 +151,7 @@ jobs:
TESTS="false"
fi
QUADRUPLE="true"
if [[ "${{ matrix.compiler }}" == "intel-classic" || "${{ matrix.compiler }}" == "intel" ]]; then
if [[ "${{ matrix.compiler }}" == "nvidia-hpc" || "${{ matrix.compiler }}" == "intel-classic" || "${{ matrix.compiler }}" == "intel" ]]; then
QUADRUPLE="false"
fi
meson setup builddir --buildtype=debug \
Expand Down