Skip to content

Commit

Permalink
Test with Int64
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Jun 13, 2024
1 parent 56ba06c commit d14f06f
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/meson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,27 @@ jobs:
- os: ubuntu-latest
compiler: intel-classic
version: '2021.10'
int: '32'
- os: ubuntu-latest
compiler: intel-classic
version: '2021.10'
int: '64'
- os: windows-latest
compiler: intel
version: '2023.2'
int: '32'
- os: windows-latest
compiler: intel
version: '2023.2'
int: '64'
- os: ubuntu-latest
compiler: intel
version: '2023.2'
int: '32'
- os: ubuntu-latest
compiler: intel
version: '2023.2'
int: '64'
# - os: ubuntu-latest
# compiler: nvidia-hpc
# version: '24.05'
Expand Down Expand Up @@ -60,9 +75,14 @@ jobs:
- name: Setup CUTEST
shell: bash
run: |
INT64="false"
if [[ "${{matrix.int}}" == "64" ]]; then
INT64="true"
fi
meson setup builddir --buildtype=debug \
--prefix=$GITHUB_WORKSPACE/cutest \
-Dquadruple=true
-Dquadruple=true \
-Dcutest_int64=$INT64
- name: Build CUTEST
shell: bash
Expand Down

0 comments on commit d14f06f

Please sign in to comment.