File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ max_retries = 3
10
10
require_https = true
11
11
12
12
exclude = [
13
+ # Flakey
14
+ " etherscan.io" ,
13
15
# priv org
14
- " https:// github.com/boundless-xyz/* " ,
16
+ " github.com/boundless-xyz" ,
15
17
]
Original file line number Diff line number Diff line change @@ -138,8 +138,15 @@ install_cuda() {
138
138
if dpkg -l | grep -q " ^ii cuda-toolkit" ; then
139
139
info " CUDA Toolkit is already installed. Skipping CUDA installation."
140
140
else
141
- info " Installing CUDA Toolkit..."
141
+ info " Installing CUDA Toolkit and dependencies ..."
142
142
{
143
+ local distribution
144
+ distribution=$( grep ' ^ID=' /etc/os-release | cut -d' =' -f2 | tr -d ' "' ) $( grep ' ^VERSION_ID=' /etc/os-release | cut -d' =' -f2 | tr -d ' "' | tr -d ' \.' )
145
+ info " Installing Nvidia CUDA keyring and repo"
146
+ wget https://developer.download.nvidia.com/compute/cuda/repos/$distribution /$( /usr/bin/uname -m) /cuda-keyring_1.1-1_all.deb
147
+ dpkg -i cuda-keyring_1.1-1_all.deb
148
+ rm cuda-keyring_1.1-1_all.deb
149
+ apt-get update
143
150
apt-get install -y cuda-toolkit
144
151
} >> " $LOG_FILE " 2>&1
145
152
success " CUDA Toolkit installed successfully."
You can’t perform that action at this time.
0 commit comments