From 3ad813dbbd92bbd6b65a3faefb5a63794b7ab9da Mon Sep 17 00:00:00 2001 From: Peter Heywood Date: Thu, 11 Jan 2024 14:12:07 +0000 Subject: [PATCH] try only building all remaingin targets with 1 process, potential ci mem issue with 23.11 --- .github/workflows/NVHPC.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/NVHPC.yml b/.github/workflows/NVHPC.yml index b045ab2af..6992f59f1 100644 --- a/.github/workflows/NVHPC.yml +++ b/.github/workflows/NVHPC.yml @@ -260,7 +260,8 @@ jobs: - name: Build all remaining targets working-directory: ${{ env.BUILD_DIR }} - run: cmake --build . --target all --verbose -j `nproc` + run: cmake --build . --target all --verbose -j 1 + #`nproc` # Upload wheel artifacts to the job on GHA, with a short retention # Use a unique name per job matrix run, to avoid a risk of corruption according to the docs (although it should work with unique filenames)