File tree 2 files changed +6
-1
lines changed
.github/actions/fetch_ctk
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 51
51
shell : bash --noprofile --norc -xeuo pipefail {0}
52
52
run : |
53
53
CACHE_TMP_DIR="./cache_tmp_dir"
54
- rm -f $CACHE_TMP_DIR
54
+ rm -rf $CACHE_TMP_DIR
55
55
mkdir $CACHE_TMP_DIR
56
56
57
57
# The binary archives (redist) are guaranteed to be updated as part of the release posting.
@@ -120,6 +120,7 @@ runs:
120
120
CUDA_PATH="./cuda_toolkit"
121
121
mkdir -p $CUDA_PATH
122
122
mv $CACHE_TMP_DIR/* $CUDA_PATH
123
+ rmdir $CACHE_TMP_DIR
123
124
124
125
- name : Upload CTK cache
125
126
if : ${{ always() &&
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
+ # Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. ALL RIGHTS RESERVED.
3
+ #
4
+ # SPDX-License-Identifier: Apache-2.0
5
+
2
6
# URL to search
3
7
URL=" https://developer.download.nvidia.com/compute/cuda/redist/"
4
8
You can’t perform that action at this time.
0 commit comments