setup-zig/index.js

97 lines
3.1 KiB
JavaScript
Raw Permalink Normal View History

'use strict'
2019-10-05 10:44:40 +00:00
const os = require('os')
const path = require('path')
const semver = require('semver')
const actions = require('@actions/core')
const cache = require('@actions/cache')
const toolCache = require('@actions/tool-cache')
const {
extForPlatform,
resolveCommit,
resolveVersion
} = require('./versions')
2020-11-11 11:27:49 +00:00
const TOOL_NAME = 'zig'
async function downloadZig (arch, platform, version, useCache = true) {
2020-11-11 11:27:49 +00:00
const ext = extForPlatform(platform)
2024-04-29 07:15:04 +00:00
// There are three levels of data here:
// 1. Local cache - this is literally cache already established with the job
// container, and is a pre-unpacked directory
// 2. Runner cache - this is a cache that is outside the job, but still
// on the host that is running jobs
// 3. The canonical source
2023-11-26 06:50:06 +00:00
const {
downloadUrl,
fileWithoutFileType,
variantName,
version: useVersion
} = version.includes('+')
? resolveCommit(arch, platform, version)
: await resolveVersion(arch, platform, version)
2020-11-11 11:27:49 +00:00
2024-04-29 07:15:04 +00:00
// Check L1 and return on hit
const cachedPath = toolCache.find(TOOL_NAME, useVersion)
if (cachedPath) {
2024-04-29 06:30:52 +00:00
actions.info(`using cached zig install (version ${useVersion}): ${cachedPath}`)
return cachedPath
}
2024-04-29 07:15:04 +00:00
// Check L2 and return on hit
const cacheKey = `${TOOL_NAME}-${variantName}`
if (useCache) {
const restorePath = path.join(process.env.RUNNER_TOOL_CACHE, TOOL_NAME, useVersion, arch)
actions.info(`attempting restore of ${cacheKey} to ${restorePath}`)
const restoredKey = await cache.restoreCache([restorePath], cacheKey)
if (restoredKey) {
actions.info(`using cached zig install: ${restorePath}`)
return restorePath
}
}
2024-04-29 07:15:04 +00:00
// Miss on L1 and on L2. Need to go to canonical source
actions.info(`no cached version found. downloading zig ${variantName}`)
const downloadPath = await toolCache.downloadTool(downloadUrl)
2020-11-11 11:27:49 +00:00
const zigPath = ext === 'zip'
? await toolCache.extractZip(downloadPath)
: await toolCache.extractTar(downloadPath, undefined, 'x')
2020-11-11 11:27:49 +00:00
2024-04-29 04:00:34 +00:00
actions.info(`${variantName} zig downloaded and extracted to ${zigPath}`)
2023-11-26 06:50:06 +00:00
const binPath = path.join(zigPath, fileWithoutFileType)
const cachePath = await toolCache.cacheDir(binPath, TOOL_NAME, useVersion)
if (useCache) {
actions.info(`adding zig ${useVersion} at ${cachePath} to local cache ${cacheKey}`)
await cache.saveCache([cachePath], cacheKey)
}
2020-11-11 11:27:49 +00:00
return cachePath
2019-10-05 10:44:40 +00:00
}
async function main () {
2022-11-07 12:19:37 +00:00
const version = actions.getInput('version') || 'master'
const useCache = actions.getInput('cache') || 'true'
if (semver.valid(version) && semver.lt(version, '0.3.0')) {
2019-10-05 10:44:40 +00:00
actions.setFailed('This action does not work with Zig 0.1.0 and Zig 0.2.0')
return
}
if (useCache !== 'false' && useCache !== 'true') {
actions.setFailed('`with.cache` must be "true" or "false"')
return
}
2019-10-05 10:44:40 +00:00
const zigPath = await downloadZig(os.arch(), os.platform(), version, useCache === 'true')
2019-10-05 10:44:40 +00:00
// Add the `zig` binary to the $PATH
actions.addPath(zigPath)
actions.info(`zig installed at ${zigPath}`)
2019-10-05 10:44:40 +00:00
}
main().catch((err) => {
console.error(err.stack)
actions.setFailed(err.message)
process.exit(1)
})