From c33ffcb28d09a244fc1d1e29beb5de55326cfede Mon Sep 17 00:00:00 2001 From: Justin Laughlin Date: Tue, 6 Aug 2024 13:41:43 -0700 Subject: [PATCH] try change tmpdir and cuda_home --- .github/workflows/build-and-test-callable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-test-callable.yml b/.github/workflows/build-and-test-callable.yml index 2ea92792..bde3556f 100644 --- a/.github/workflows/build-and-test-callable.yml +++ b/.github/workflows/build-and-test-callable.yml @@ -65,7 +65,7 @@ jobs: env: cuda-toolkit-version: '12.4.1' - CUDA_HOME: '/usr/local/cuda-12.4' + CUDA_HOME: '/usr/local/cuda' cuda-driver-version: '550.54.15' # These are all passed to setup.py as one concatenated string build-flags: >- @@ -120,9 +120,9 @@ jobs: if: inputs.cuda run: | # Make a separate temp dir so cuda doesn't run out of space - mkdir -p ~/cache/cudatemp + mkdir -p ~/cudatemp # The --silent flag is necessary to bypass user-input, e.g. accepting the EULA - sudo sh ~/cache/cuda.run --silent --toolkit --tmpdir=~/cache/cudatemp + sudo sh ~/cache/cuda.run --silent --toolkit --tmpdir=~/cudatemp echo "/usr/local/cuda/bin" >> $GITHUB_PATH - name: Print dependency information