about summary refs log tree commit diff
path: root/src/ci
diff options
context:
space:
mode:
authorAndy Russell <arussell123@gmail.com>2019-01-22 16:15:02 -0500
committerAndy Russell <arussell123@gmail.com>2019-01-22 16:18:29 -0500
commit4e649ccc3a6ee5bd910ae41fd0bc6df4be234b4c (patch)
tree0dadfb4f199faac2191f6433dec2275df8de2f66 /src/ci
parentad30e9a6814b5d29dfbdcd85ecde48afcc94389b (diff)
downloadrust-4e649ccc3a6ee5bd910ae41fd0bc6df4be234b4c.tar.gz
rust-4e649ccc3a6ee5bd910ae41fd0bc6df4be234b4c.zip
use port 80 for retrieving GPG key
This works around firewalls blocking port 11371.

See https://unix.stackexchange.com/questions/75892/keyserver-timed-out-when-trying-to-add-a-gpg-public-key.
Diffstat (limited to 'src/ci')
-rwxr-xr-xsrc/ci/docker/dist-various-1/install-x86_64-redox.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ci/docker/dist-various-1/install-x86_64-redox.sh b/src/ci/docker/dist-various-1/install-x86_64-redox.sh
index 29222ff60f2..c39be14941c 100755
--- a/src/ci/docker/dist-various-1/install-x86_64-redox.sh
+++ b/src/ci/docker/dist-various-1/install-x86_64-redox.sh
@@ -6,7 +6,7 @@ set -ex
 apt-get update
 apt-get install -y --no-install-recommends software-properties-common apt-transport-https
 
-apt-key adv --batch --yes --keyserver keyserver.ubuntu.com --recv-keys AA12E97F0881517F
+apt-key adv --batch --yes --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys AA12E97F0881517F
 add-apt-repository -y 'deb https://static.redox-os.org/toolchain/apt /'
 
 apt-get update