Files
setup-elixir/src/setup-elixir.js

114 lines
3.2 KiB
JavaScript
Raw Normal View History

2019-08-28 00:00:01 -04:00
const core = require('@actions/core')
const {exec} = require('@actions/exec')
const {installElixir, installOTP} = require('./installer')
const path = require('path')
const semver = require('semver')
2019-11-17 19:30:42 +01:00
const https = require('https')
2019-08-28 00:00:01 -04:00
main().catch(err => {
core.setFailed(err.message)
})
async function main() {
checkPlatform()
const otpSpec = core.getInput('otp-version', {required: true})
const elixirSpec = core.getInput('elixir-version', {required: true})
2019-11-17 23:40:55 +01:00
const otpVersion = await getOtpVersion(otpSpec)
const [elixirVersion, otpMajor] = await getElixirVersion(elixirSpec, otpVersion)
2019-08-28 00:00:01 -04:00
let installHex = core.getInput('install-hex')
installHex = installHex == null ? true : installHex
let installRebar = core.getInput('install-rebar')
installRebar = installRebar == null ? true : installRebar
console.log(`##[group]Installing OTP ${otpVersion}`)
await installOTP(otpVersion)
console.log(`##[endgroup]`)
console.log(`##[group]Installing Elixir ${elixirVersion}`)
2019-11-17 19:30:42 +01:00
await installElixir(elixirVersion, otpMajor)
2019-08-28 00:00:01 -04:00
console.log(`##[endgroup]`)
2019-11-17 19:30:42 +01:00
process.env.PATH = `${process.cwd()}/.setup-elixir/elixir/bin:${process.env.PATH}`
2019-08-28 00:00:01 -04:00
if (installRebar) await exec('mix local.rebar --force')
if (installHex) await exec('mix local.hex --force')
}
function checkPlatform() {
if (process.platform !== 'linux')
throw new Error(
'@actions/setup-elixir only supports Ubuntu Linux at this time'
)
}
2019-11-17 23:40:55 +01:00
async function getOtpVersion(spec) {
return getVersionFromSpec(spec, await getOtpVersions()) || spec
}
async function getElixirVersion(spec, otpVersion) {
const versions = await getElixirVersions()
const semverRegex = /^v(\d+\.\d+\.\d+)/
const semverVersions =
Array.from(versions.keys())
.filter(str => str.match(semverRegex))
.map(str => str.match(semverRegex)[1])
const version = getVersionFromSpec(spec, semverVersions)
const gitRef = version ? `v${version}` : spec
2019-11-17 19:30:42 +01:00
const [otpMajor] = otpVersion.match(/^\d+/)
2019-11-17 23:40:55 +01:00
if (versions.get(gitRef).includes(otpMajor)) {
return [gitRef, otpMajor]
2019-11-17 19:30:42 +01:00
} else {
2019-11-17 23:40:55 +01:00
return [gitRef, null]
2019-11-17 19:30:42 +01:00
}
}
function getVersionFromSpec(spec, versions) {
2019-08-28 00:00:01 -04:00
const range = semver.validRange(spec)
2019-11-17 23:40:55 +01:00
return semver.maxSatisfying(versions, range)
2019-08-28 00:00:01 -04:00
}
2019-11-17 19:30:42 +01:00
async function getOtpVersions() {
const result = await get("https://raw.githubusercontent.com/erlang/otp/master/otp_versions.table")
return result.trim().split('\n').map(line => {
const [_, version] = line.match(/^OTP-([\.\d]+)/)
return version
})
}
async function getElixirVersions() {
const result = await get("https://repo.hex.pm/builds/elixir/builds.txt")
const map = new Map()
result.trim().split('\n').forEach(line => {
2019-11-17 23:40:55 +01:00
const match = line.match(/^(v\d+\.\d+\.\d+)-otp-(\d+)/) || line.match(/^([^-]+)-otp-(\d+)/)
2019-11-17 19:30:42 +01:00
if (match) {
const [_, version, otp] = match
const array = (map.get(version) || [])
array.push(otp)
map.set(version, array)
}
})
return map
}
function get(url) {
return new Promise((resolve, reject) => {
const req = https.get(url)
req.on('response', res => {
let data = ''
res.on('data', (chunk) => { data += chunk })
res.on('end', () => { resolve(data) })
})
req.on('error', err => { reject(err) })
})
}