2022-11-15 15:57:34 +00:00
|
|
|
import * as core from "@actions/core"
|
|
|
|
import * as exec from "@actions/exec"
|
|
|
|
import * as github from "@actions/github"
|
|
|
|
import { GitHub } from "@actions/github/lib/utils"
|
|
|
|
import * as tc from "@actions/tool-cache"
|
|
|
|
import * as fs from "fs"
|
2023-05-16 23:15:48 +00:00
|
|
|
import semver from "semver"
|
2022-11-14 03:22:12 +00:00
|
|
|
|
2023-05-16 23:15:48 +00:00
|
|
|
import {
|
|
|
|
check_cache,
|
|
|
|
install_nextflow,
|
|
|
|
nextflow_bin_url,
|
|
|
|
release_data
|
|
|
|
} from "./functions"
|
2022-06-13 20:07:53 +00:00
|
|
|
|
2022-11-13 21:56:49 +00:00
|
|
|
async function run(): Promise<void> {
|
2022-07-13 21:09:19 +00:00
|
|
|
// Set environment variables
|
2022-11-15 15:57:34 +00:00
|
|
|
core.exportVariable("CAPSULE_LOG", "none")
|
2022-07-13 21:09:19 +00:00
|
|
|
|
2022-06-13 20:07:53 +00:00
|
|
|
// Read in the arguments
|
2022-11-15 15:57:34 +00:00
|
|
|
const token = core.getInput("token")
|
|
|
|
const version = core.getInput("version")
|
|
|
|
const get_all = core.getBooleanInput("all")
|
2022-06-13 20:07:53 +00:00
|
|
|
|
2023-05-16 23:15:48 +00:00
|
|
|
// Check the cache for the Nextflow version that matched last time
|
|
|
|
if (check_cache(version)) {
|
|
|
|
return
|
|
|
|
}
|
2022-06-13 20:34:37 +00:00
|
|
|
|
2022-06-13 18:29:56 +00:00
|
|
|
// Setup the API
|
2022-11-14 01:31:35 +00:00
|
|
|
let octokit: InstanceType<typeof GitHub> | undefined
|
2022-06-13 18:29:56 +00:00
|
|
|
try {
|
2022-11-13 04:07:59 +00:00
|
|
|
octokit = github.getOctokit(token)
|
2022-11-13 23:02:40 +00:00
|
|
|
} catch (e: unknown) {
|
|
|
|
if (e instanceof Error) {
|
|
|
|
core.setFailed(
|
|
|
|
`Could not authenticate to GitHub Releases API with provided token\n${e.message}`
|
|
|
|
)
|
|
|
|
}
|
2022-06-13 18:29:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the release info for the desired release
|
2022-11-13 21:56:49 +00:00
|
|
|
let release = {}
|
2023-05-16 23:15:48 +00:00
|
|
|
let resolved_version = ""
|
2022-06-13 18:29:56 +00:00
|
|
|
try {
|
2022-11-14 01:31:35 +00:00
|
|
|
if (octokit !== undefined) {
|
|
|
|
release = await release_data(version, octokit)
|
|
|
|
}
|
2022-11-15 15:57:34 +00:00
|
|
|
resolved_version = release["tag_name"]
|
2022-11-13 23:09:09 +00:00
|
|
|
core.info(
|
2022-11-15 15:57:34 +00:00
|
|
|
`Input version '${version}' resolved to Nextflow ${release["name"]}`
|
2022-11-13 23:09:09 +00:00
|
|
|
)
|
2022-11-13 23:02:40 +00:00
|
|
|
} catch (e: unknown) {
|
|
|
|
if (e instanceof Error) {
|
|
|
|
core.setFailed(
|
|
|
|
`Could not retrieve Nextflow release matching ${version}.\n${e.message}`
|
|
|
|
)
|
|
|
|
}
|
2022-06-13 18:29:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the download url for the desired release
|
2022-11-15 15:57:34 +00:00
|
|
|
let url = ""
|
2022-06-13 18:29:56 +00:00
|
|
|
try {
|
2022-11-13 04:07:59 +00:00
|
|
|
url = nextflow_bin_url(release, get_all)
|
|
|
|
core.info(`Preparing to download from ${url}`)
|
2022-11-13 23:02:40 +00:00
|
|
|
} catch (e: unknown) {
|
|
|
|
if (e instanceof Error) {
|
|
|
|
core.setFailed(`Could not parse the download URL\n${e.message}`)
|
|
|
|
}
|
2022-06-13 18:29:56 +00:00
|
|
|
}
|
|
|
|
try {
|
2022-06-13 20:07:53 +00:00
|
|
|
// Download Nextflow and add it to path
|
2023-05-16 23:15:48 +00:00
|
|
|
if (!check_cache(resolved_version)) {
|
2022-11-13 04:07:59 +00:00
|
|
|
const nf_install_path = await install_nextflow(url, resolved_version)
|
2023-05-16 23:15:48 +00:00
|
|
|
const cleaned_version = String(semver.clean(resolved_version, true))
|
|
|
|
const nf_path = await tc.cacheDir(
|
|
|
|
nf_install_path,
|
|
|
|
"nextflow",
|
|
|
|
cleaned_version
|
|
|
|
)
|
|
|
|
core.addPath(nf_path)
|
|
|
|
core.info(`Downloaded \`nextflow\` to ${nf_path} and added to PATH`)
|
2022-11-13 04:07:59 +00:00
|
|
|
core.debug(`Added Nextflow to cache: ${nf_path}`)
|
2022-11-14 02:29:05 +00:00
|
|
|
fs.rmdirSync(nf_install_path, { recursive: true })
|
2022-06-13 20:07:53 +00:00
|
|
|
}
|
2022-11-13 23:02:40 +00:00
|
|
|
} catch (e: unknown) {
|
|
|
|
if (e instanceof Error) {
|
|
|
|
core.setFailed(e.message)
|
|
|
|
}
|
2022-06-13 18:29:56 +00:00
|
|
|
}
|
2022-06-13 21:38:31 +00:00
|
|
|
|
|
|
|
// Run Nextflow so it downloads its dependencies
|
|
|
|
try {
|
2022-11-15 15:57:34 +00:00
|
|
|
await exec.exec("nextflow", ["help"])
|
2022-11-13 23:02:40 +00:00
|
|
|
} catch (e: unknown) {
|
|
|
|
if (e instanceof Error) {
|
2023-10-11 14:29:12 +00:00
|
|
|
// fail workflow if Nextflow run does not succeed
|
|
|
|
core.setFailed(`Could not run 'nextflow help'. Error: ${e.message}`)
|
2022-11-13 23:02:40 +00:00
|
|
|
}
|
2022-06-13 21:38:31 +00:00
|
|
|
}
|
2022-06-13 18:29:56 +00:00
|
|
|
}
|
|
|
|
|
2022-11-13 04:07:59 +00:00
|
|
|
run()
|