2019-10-05 10:44:40 +00:00
|
|
|
const os = require('os')
|
|
|
|
const path = require('path')
|
|
|
|
const semver = require('semver')
|
2019-10-07 08:17:11 +00:00
|
|
|
const get = require('simple-get').concat
|
2019-10-05 10:44:40 +00:00
|
|
|
const actions = require('@actions/core')
|
|
|
|
const cache = require('@actions/tool-cache')
|
|
|
|
|
2019-10-07 08:17:11 +00:00
|
|
|
function getJSON (opts) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
get({ ...opts, json: true }, (err, req, data) => {
|
|
|
|
if (err) {
|
|
|
|
reject(err)
|
|
|
|
} else {
|
|
|
|
resolve(data)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-10-05 10:44:40 +00:00
|
|
|
async function downloadZig (version) {
|
|
|
|
const host = {
|
2019-10-07 08:17:11 +00:00
|
|
|
linux: 'x86_64-linux',
|
|
|
|
darwin: 'x86_64-macos',
|
|
|
|
win32: 'x86_64-windows'
|
|
|
|
}[os.platform()] || os.platform()
|
2019-10-05 10:44:40 +00:00
|
|
|
const ext = {
|
|
|
|
linux: 'tar.xz',
|
|
|
|
darwin: 'tar.xz',
|
|
|
|
win32: 'zip'
|
|
|
|
}[os.platform()]
|
|
|
|
|
2019-10-07 08:17:11 +00:00
|
|
|
const index = await getJSON({ url: 'https://ziglang.org/download/index.json' })
|
|
|
|
|
2020-01-23 09:55:01 +00:00
|
|
|
const availableVersions = Object.keys(index)
|
|
|
|
const useVersion = semver.valid(version)
|
|
|
|
? semver.maxSatisfying(availableVersions.filter((v) => semver.valid(v)), version)
|
|
|
|
: null
|
2019-10-05 10:44:40 +00:00
|
|
|
|
2019-10-07 08:17:11 +00:00
|
|
|
const meta = index[useVersion || version]
|
|
|
|
if (!meta || !meta[host]) {
|
|
|
|
throw new Error(`Could not find version ${version} for platform ${host}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
const hostVariantName = {
|
|
|
|
linux: 'linux-x86_64',
|
|
|
|
darwin: 'macos-x86_64',
|
|
|
|
win32: 'windows-x86_64'
|
|
|
|
}[os.platform()]
|
|
|
|
const variantName = `zig-${hostVariantName}-${version}`
|
|
|
|
const downloadPath = await cache.downloadTool(meta[host].tarball)
|
2019-10-05 10:44:40 +00:00
|
|
|
const zigPath = ext === 'zip'
|
|
|
|
? await cache.extractZip(downloadPath)
|
|
|
|
: await cache.extractTar(downloadPath, undefined, 'x')
|
|
|
|
|
|
|
|
const binPath = path.join(zigPath, variantName)
|
|
|
|
return cache.cacheDir(binPath, 'zig', version)
|
|
|
|
}
|
|
|
|
|
|
|
|
async function main () {
|
|
|
|
const version = actions.getInput('version') || '0.5.0'
|
2020-01-23 09:55:01 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2019-10-06 13:52:14 +00:00
|
|
|
let zigPath = cache.find('zig', version)
|
|
|
|
if (!zigPath) {
|
|
|
|
zigPath = await downloadZig(version)
|
|
|
|
}
|
2019-10-05 10:44:40 +00:00
|
|
|
|
|
|
|
// Add the `zig` binary to the $PATH
|
|
|
|
actions.addPath(zigPath)
|
|
|
|
}
|
|
|
|
|
|
|
|
main()
|