From d14f06fdd103f3a468749a0b7cb7efd99685786f Mon Sep 17 00:00:00 2001 From: Alexis Montoison Date: Wed, 12 Jun 2024 23:29:54 -0400 Subject: [PATCH] Test with Int64 --- .github/workflows/meson.yml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/.github/workflows/meson.yml b/.github/workflows/meson.yml index 1179402..ae8a55a 100644 --- a/.github/workflows/meson.yml +++ b/.github/workflows/meson.yml @@ -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' @@ -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