ci: add retries to downloads for arm testing (#18526)

This commit is contained in:
John Kleinschmidt 2019-05-30 20:22:35 -04:00 коммит произвёл Samuel Attard
Родитель 1e3e5a6619
Коммит a31faaae61
1 изменённых файлов: 21 добавлений и 2 удалений

Просмотреть файл

@ -49,11 +49,30 @@ async function downloadArtifact (name, buildNum, dest) {
process.exit(1)
} else {
console.log(`Downloading ${artifactToDownload.url}.`)
await downloadFile(artifactToDownload.url, dest)
console.log(`Successfully downloaded ${name}.`)
let downloadError = false
await downloadWithRetry(artifactToDownload.url, dest).catch(err => {
console.log(`Error downnloading ${artifactToDownload.url} :`, err)
downloadError = true
})
if (!downloadError) {
console.log(`Successfully downloaded ${name}.`)
}
}
}
async function downloadWithRetry (url, directory) {
let lastError
for (let i = 0; i < 5; i++) {
console.log(`Attempting to download ${url} - attempt #${(i + 1)}`)
try {
return await downloadFile(url, directory)
} catch (err) {
lastError = err
}
}
throw lastError
}
function downloadFile (url, directory) {
return new Promise((resolve, reject) => {
const nuggetOpts = {