Skip to content

Commit 579dfe2

Browse files
committed
minor #4784 Travis CI - Use multiple keyservers (ktomk)
This PR was squashed before being merged into the 2.15 branch (closes #4784). Discussion ---------- Travis CI - Use multiple keyservers See messages for detailed description. Adresses failures on running dev-tools install shell script on travis as reported in #4770 Commits ------- a68bd01 Travis CI - Use multiple keyservers
2 parents ab244d0 + a68bd01 commit 579dfe2

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

dev-tools/install.sh

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,19 @@ echo λλλ phive
2828
if [ ! -x bin/phive ]; then
2929
wget -Obin/phive https://phar.io/releases/phive.phar
3030
wget -Obin/phive.asc https://phar.io/releases/phive.phar.asc
31-
gpg --keyserver pool.sks-keyservers.net --recv-keys 0x9D8A98B29B2D5D79
31+
gpg --list-keys 0x9D8A98B29B2D5D79 \
32+
|| gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 0x9D8A98B29B2D5D79 \
33+
|| gpg --keyserver keys.fedoraproject.org --recv-keys 0x9D8A98B29B2D5D79 \
34+
|| gpg --keyserver keyserver.ubuntu.com --recv-keys 0x9D8A98B29B2D5D79 \
35+
|| gpg --keyserver pgp.mit.edu --recv-keys 0x9D8A98B29B2D5D79
3236
gpg --verify bin/phive.asc bin/phive
3337
chmod u+x bin/phive
3438
fi
3539
bin/phive --version
3640

41+
echo λλλ phive packages
42+
./bin/phive install --trust-gpg-keys D2CCAC42F6295E7D,8E730BA25823D8B5,CF1A108D0E7AE720
43+
3744
echo λλλ checkbashisms
3845
if [ ! -x bin/checkbashisms ]; then
3946
wget -Obin/checkbashisms https://sourceforge.net/projects/checkbaskisms/files/${VERSION_CB}/checkbashisms/download
@@ -53,7 +60,3 @@ bin/shellcheck --version
5360
echo λλλ composer packages
5461
composer update
5562
composer info -D | sort
56-
57-
echo λλλ phive packages
58-
59-
./bin/phive install --trust-gpg-keys D2CCAC42F6295E7D,8E730BA25823D8B5,CF1A108D0E7AE720

0 commit comments

Comments
 (0)