From d520e5a1fd0223b0a56d6d63df09d44749b119ca Mon Sep 17 00:00:00 2001 From: Ryan Mulhall <35538242+rem1776@users.noreply.github.com> Date: Thu, 17 Aug 2023 15:14:01 -0400 Subject: [PATCH] ci: add io flag to intel test(#1282) --- .github/workflows/github_autotools_intel.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/github_autotools_intel.yml b/.github/workflows/github_autotools_intel.yml index 62a15361ea..851ad71520 100644 --- a/.github/workflows/github_autotools_intel.yml +++ b/.github/workflows/github_autotools_intel.yml @@ -2,13 +2,16 @@ on: pull_request jobs: intel-autotools: runs-on: ubuntu-latest + strategy: + matrix: + io-flag: ["--disable-deprecated-io", "--enable-deprecated-io"] container: image: intel/oneapi-hpckit:2023.1.0-devel-ubuntu20.04 env: CC: mpiicc FC: mpiifort CFLAGS: "-I/libs/include" - FCFLAGS: "-I/libs/include -g -traceback" + FCFLAGS: "-I/libs/include -g -traceback ${{ matrix.io-flag }}" LDFLAGS: "-L/libs/lib" TEST_VERBOSE: 1 I_MPI_FABRICS: "shm" # needed for mpi in image