Skip to content

Commit

Permalink
add required env vars to run properly on cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
rem1776 authored Dec 13, 2023
1 parent 65012fd commit 30b0eb9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/parallelworks_autotools_intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ jobs:
NC_VERSION: 4.7.0
INTEL_VERSION: 2022.1.2
TEST_VERBOSE: 1
MPI_LAUNCHER: "srun --partition n384 --mpi=pmi2"
MPI_LAUNCHER: "srun --mpi=pmi2"
I_MPI_FABRICS: "shm:ofi"
I_MPI_OFI_PROVIDER: "tcp"
steps:
- name: checkout
uses: actions/checkout@v2
Expand All @@ -38,8 +40,8 @@ jobs:
cd build && make -j || make
- name: Run test suite
run: |
salloc -n 24 -p n384 -t 60
salloc -n 25 -p n384 -t 60
module load intel/${INTEL_VERSION} impi/${INTEL_VERSION} netcdf/${NC_VERSION} hdf5
cd build
make check -k | tee test.out
cat test.out # | grep "^FAIL:"
cat test.out | grep "^FAIL:"

0 comments on commit 30b0eb9

Please sign in to comment.