Better error for 404

This commit is contained in:
Benoit Daloze
2024-05-30 15:01:16 +02:00
parent 68b705993a
commit 12dfa2bb47
3 changed files with 26 additions and 6 deletions
Generated Vendored
+13 -3
View File
@@ -65026,7 +65026,17 @@ async function downloadAndExtract(platform, engine, version, rubyPrefix) {
const downloadPath = await common.measure('Downloading Ruby', async () => {
const url = getDownloadURL(platform, engine, version)
console.log(url)
return await tc.downloadTool(url)
try {
return await tc.downloadTool(url)
} catch (error) {
if (error.message.endsWith('404')) {
throw new Error(`Unavailable version ${version} for ${engine} on ${platform}.
You can request it at https://github.com/ruby/setup-ruby/issues.
Original Error: (${error.message})`)
} else {
throw error
}
}
})
await common.measure('Extracting Ruby', async () => {
@@ -65889,8 +65899,8 @@ function validateRubyEngineAndVersion(platform, engineVersions, engine, parsedVe
if (found) {
version = found
} else {
throw new Error(`Unknown version ${parsedVersion} for ${engine} on ${platform}
available versions for ${engine} on ${platform}: ${engineVersions.join(', ')}
throw new Error(`Unknown version ${parsedVersion} for ${engine} on ${platform}.
Available versions for ${engine} on ${platform}: ${engineVersions.join(', ')}.
Make sure you use the latest version of the action with - uses: ruby/setup-ruby@v1`)
}
}