"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; result["default"] = mod; return result; }; Object.defineProperty(exports, "__esModule", { value: true }); const core = __importStar(require("@actions/core")); const exec = __importStar(require("@actions/exec")); const tc = __importStar(require("@actions/tool-cache")); const os = __importStar(require("os")); const path = __importStar(require("path")); const semver = __importStar(require("semver")); // Store information about the environment const osPlat = os.platform(); // possible values: win32 (Windows), linux (Linux), darwin (macOS) core.debug(`platform: ${osPlat}`); // This is temporary until we have a better way of fetching releases (see #1, #4 for details) exports.juliaVersions = ['v1.3.0-rc5', 'v1.3.0-rc4', 'v1.3.0-rc3', 'v1.3.0-rc2', 'v1.0.5', 'v1.2.0', 'v1.3.0-rc1', 'v1.2.0-rc3', 'v1.3.0-alpha', 'v1.2.0-rc2', 'v1.2.0-rc1', 'v1.1.1', 'v1.0.4', 'v1.1.0', 'v1.1.0-rc2', 'v1.1.0-rc1', 'v1.0.3', 'v1.0.2', 'v1.0.1', 'v1.0.0', 'v0.7.0', 'v1.0.0-rc1', 'v0.7.0-rc3', 'v0.7.0-rc2', 'v0.7.0-rc1', 'v0.7.0-beta2', 'v0.6.4', 'v0.7.0-beta', 'v0.7.0-alpha', 'v0.6.3', 'v0.6.2', 'v0.6.1', 'v0.6.0', 'v0.6.0-rc3', 'v0.6.0-rc2', 'v0.5.2', 'v0.6.0-rc1', 'v0.6.0-pre.beta', 'v0.5.1', 'v0.6.0-pre.alpha', 'v0.5.0', 'v0.4.7', 'v0.5.0-rc4', 'v0.5.0-rc3', 'v0.5.0-rc2', 'v0.5.0-rc1', 'v0.5.0-rc0', 'v0.4.6', 'v0.4.5', 'v0.4.4', 'v0.4.3', 'v0.4.2', 'v0.4.1', 'v0.3.12', 'v0.4.0', 'v0.4.0-rc4', 'v0.4.0-rc3', 'v0.4.0-rc2', 'v0.4.0-rc1', 'v0.3.11', 'v0.3.10', 'v0.3.9', 'v0.3.8', 'v0.3.7', 'v0.3.6', 'v0.3.5', 'v0.3.4', 'v0.3.3', 'v0.3.2', 'v0.3.1', 'v0.3.0', 'v0.3.0-rc4', 'v0.3.0-rc3', 'v0.3.0-rc2', 'v0.3.0-rc1', 'v0.2.0-rc1', 'v0.2.0-rc3', 'v0.2.0-rc4', 'v0.2.0', 'v0.2.0-rc2']; function getJuliaVersion(availableReleases, versionInput) { return __awaiter(this, void 0, void 0, function* () { if (semver.valid(versionInput) == versionInput) { // versionInput is a valid version, use it directly return versionInput; } // nightlies if (versionInput == 'nightly') { return 'nightly'; } // Use the highest available version that matches versionInput let version = semver.maxSatisfying(availableReleases, versionInput); if (version == null) { throw `Could not find a Julia version that matches ${versionInput}`; } // GitHub tags start with v, remove it version = version.replace(/^v/, ''); return version; }); } exports.getJuliaVersion = getJuliaVersion; function getMajorMinorVersion(version) { return version.split('.').slice(0, 2).join('.'); } function getDownloadURL(version, arch) { let platform; if (osPlat === 'win32') { // Windows platform = 'winnt'; } else if (osPlat === 'darwin') { // macOS if (arch == 'x86') { throw '32-bit Julia is not available on macOS'; } platform = 'mac'; } else if (osPlat === 'linux') { // Linux platform = 'linux'; } else { throw `Platform ${osPlat} is not supported`; } // nightlies if (version == 'nightly') { const baseURL = 'https://julialangnightlies-s3.julialang.org/bin'; return `${baseURL}/${platform}/${arch}/${getFileName('latest', arch)}`; } // normal versions const baseURL = 'https://julialang-s3.julialang.org/bin'; const versionDir = getMajorMinorVersion(version); return `${baseURL}/${platform}/${arch}/${versionDir}/${getFileName(version, arch)}`; } function getFileName(version, arch) { let versionExt, ext; if (osPlat === 'win32') { // Windows versionExt = arch == 'x64' ? '-win64' : '-win32'; ext = 'exe'; } else if (osPlat === 'darwin') { // macOS if (arch == 'x86') { throw '32-bit Julia is not available on macOS'; } versionExt = '-mac64'; ext = 'dmg'; } else if (osPlat === 'linux') { // Linux if (version == 'latest') { // nightly version versionExt = arch == 'x64' ? '-linux64' : '-linux32'; } else { versionExt = arch == 'x64' ? '-linux-x86_64' : '-linux-i686'; } ext = 'tar.gz'; } else { throw `Platform ${osPlat} is not supported`; } return `julia-${version}${versionExt}.${ext}`; } function installJulia(version, arch) { return __awaiter(this, void 0, void 0, function* () { // Download Julia const downloadURL = getDownloadURL(version, arch); core.debug(`downloading Julia from ${downloadURL}`); const juliaDownloadPath = yield tc.downloadTool(downloadURL); // Install it switch (osPlat) { case 'linux': // tc.extractTar doesn't support stripping components, so we have to call tar manually yield exec.exec('mkdir', [`${process.env.HOME}/julia`]); yield exec.exec('tar', ['xf', juliaDownloadPath, '--strip-components=1', '-C', `${process.env.HOME}/julia`]); return `${process.env.HOME}/julia`; case 'win32': const juliaInstallationPath = path.join('C:', 'Julia'); yield exec.exec('powershell', ['-Command', `Start-Process -FilePath ${juliaDownloadPath} -ArgumentList "/S /D=${juliaInstallationPath}" -NoNewWindow -Wait`]); return juliaInstallationPath; case 'darwin': yield exec.exec('hdiutil', ['attach', juliaDownloadPath]); return `/Volumes/Julia-${version}/Julia-${getMajorMinorVersion(version)}.app/Contents/Resources/julia`; default: throw `Platform ${osPlat} is not supported`; } }); } exports.installJulia = installJulia;