mirror of
https://github.com/dlang/dmd.git
synced 2025-04-25 20:50:41 +03:00
Fix broken macOS CI pipelines (#15376)
Import the D keyring to allow checking signatures for downloaded D compilers.
This commit is contained in:
parent
ae23672059
commit
0b0bdf76bd
1 changed files with 11 additions and 0 deletions
11
ci/run.sh
11
ci/run.sh
|
@ -170,6 +170,17 @@ testsuite() {
|
|||
}
|
||||
|
||||
download_install_sh() {
|
||||
if command -v gpg > /dev/null; then
|
||||
curl -fsSL \
|
||||
-A "$CURL_USER_AGENT" \
|
||||
--connect-timeout 5 \
|
||||
--speed-time 30 \
|
||||
--speed-limit 1024 \
|
||||
--retry 5 \
|
||||
--retry-delay 5 \
|
||||
https://dlang.org/d-keyring.gpg | gpg --import /dev/stdin
|
||||
fi
|
||||
|
||||
local mirrors location
|
||||
location="${1:-install.sh}"
|
||||
mirrors=(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue