From 8bc716b08c57eec299814f9267b693487741197f Mon Sep 17 00:00:00 2001 From: wkliao Date: Wed, 4 Jan 2023 18:40:05 -0600 Subject: [PATCH] openmpi requires export TMPDIR=/tmp --- .github/workflows/mac_openmpi.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/mac_openmpi.yml b/.github/workflows/mac_openmpi.yml index 9fb9645c8..507b5b60e 100644 --- a/.github/workflows/mac_openmpi.yml +++ b/.github/workflows/mac_openmpi.yml @@ -34,6 +34,7 @@ jobs: - name: Build PnetCDF run: | cd ${GITHUB_WORKSPACE} + export TMPDIR=/tmp autoreconf -i mkdir -p pnetcdf_output ./configure --enable-option-checking=fatal \ @@ -54,6 +55,7 @@ jobs: - name: make check run: | cd ${GITHUB_WORKSPACE} + export TMPDIR=/tmp make check - name: Print test log files if: ${{ always() }} @@ -70,10 +72,12 @@ jobs: - name: make ptests run: | cd ${GITHUB_WORKSPACE} + export TMPDIR=/tmp make ptests - name: make distcheck run: | cd ${GITHUB_WORKSPACE} + export TMPDIR=/tmp make -j 8 distcheck DISTCHECK_CONFIGURE_FLAGS="--silent" - name: Cleanup if: ${{ always() }}