Skip to content

Commit

Permalink
test: add conda bin directories to path
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelgold authored Nov 29, 2023
1 parent 6210427 commit 91d5322
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,13 @@ jobs:
- name: Install Conda Dependencies
run: |
conda install -y -c "nvidia/label/cuda-12.3.1" cuda-toolkit
find / -name nvcc
# find / -name nvcc
- name: Add conda subdirectories to PATH
run: |
for dir in $(find /home/runner/conda_pkgs_dir/ -mindepth 1 -type d); do
echo "$dir" >> $GITHUB_PATH
done
- name: Cache Blender dependencies
uses: actions/cache@v2
Expand Down

0 comments on commit 91d5322

Please sign in to comment.