Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/marian.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Grundkiewicz <rgrundkiewicz@gmail.com>2021-09-07 13:11:58 +0300
committerGitHub <noreply@github.com>2021-09-07 13:11:58 +0300
commit8d0a3c0c2749f234acf60a6c33fa93d5918f8fe7 (patch)
tree5093e1ffaef68eae5ea894754bcaac5050857d96
parent6652b310b10fb7cff916fda2e1da4836dde701a9 (diff)
Add --allow-unauthenticated when installing CUDA (#878)
-rwxr-xr-xscripts/ci/install_cuda_ubuntu.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci/install_cuda_ubuntu.sh b/scripts/ci/install_cuda_ubuntu.sh
index 8dc77eda..b058294a 100755
--- a/scripts/ci/install_cuda_ubuntu.sh
+++ b/scripts/ci/install_cuda_ubuntu.sh
@@ -91,7 +91,7 @@ sudo add-apt-repository "deb ${REPO_URL} /"
sudo apt-get update
echo "Installing CUDA packages ${CUDA_PACKAGES}"
-sudo apt-get -y install ${CUDA_PACKAGES}
+sudo apt-get -y --allow-unauthenticated install ${CUDA_PACKAGES}
if [[ $? -ne 0 ]]; then
echo "CUDA Installation Error."