89 lines
3.6 KiB
JavaScript
89 lines
3.6 KiB
JavaScript
"use strict";
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.winInstall = void 0;
|
|
const core = __importStar(require("@actions/core"));
|
|
const exec_1 = require("@actions/exec");
|
|
const io = __importStar(require("@actions/io"));
|
|
const toolCache = __importStar(require("@actions/tool-cache"));
|
|
const os = __importStar(require("os"));
|
|
const path = __importStar(require("path"));
|
|
const semver = __importStar(require("semver"));
|
|
function getInstallerUrl(version) {
|
|
const ver = version.version;
|
|
switch (version.type) {
|
|
case 'heads': {
|
|
const arch = os.arch() === 'x64' ? 'x64' : 'x86';
|
|
return `https://ci.appveyor.com/api/projects/waruqi/xmake/artifacts/xmake-installer.exe?branch=${ver}&pr=false&job=Image%3A+Visual+Studio+2017%3B+Platform%3A+${arch}`;
|
|
}
|
|
case 'pull': {
|
|
throw new Error('PR builds for windows is not supported');
|
|
}
|
|
case 'sha': {
|
|
throw new Error('Sha builds for windows is not supported');
|
|
}
|
|
case 'tags': {
|
|
const arch = os.arch() === 'x64' ? 'win64' : 'win32';
|
|
return semver.gt(ver, '2.2.6')
|
|
? `https://github.com/xmake-io/xmake/releases/download/${ver}/xmake-${ver}.${arch}.exe`
|
|
: `https://github.com/xmake-io/xmake/releases/download/${ver}/xmake-${ver}.exe`;
|
|
}
|
|
default: {
|
|
const _ = version.type;
|
|
throw new Error('Unknown version type');
|
|
}
|
|
}
|
|
}
|
|
async function winInstall(version) {
|
|
if (version.type === 'local') {
|
|
throw new Error('Local builds for windows is not supported');
|
|
}
|
|
const ver = version.version;
|
|
let toolDir = toolCache.find('xmake', ver);
|
|
if (!toolDir) {
|
|
const installer = await core.group(`download xmake ${String(version)}`, async () => {
|
|
const url = getInstallerUrl(version);
|
|
core.info(`downloading from ${url}`);
|
|
const file = await toolCache.downloadTool(url);
|
|
const exe = path.format({
|
|
...path.parse(file),
|
|
ext: '.exe',
|
|
base: undefined,
|
|
});
|
|
await io.mv(file, exe);
|
|
core.info(`downloaded to ${exe}`);
|
|
return exe;
|
|
});
|
|
toolDir = await core.group(`install xmake ${String(version)}`, async () => {
|
|
const binDir = path.join(os.tmpdir(), `xmake-${version.sha}`);
|
|
core.info(`installing to ${binDir}`);
|
|
await exec_1.exec(`"${installer}" /NOADMIN /S /D=${binDir}`);
|
|
core.info(`installed to ${binDir}`);
|
|
const cacheDir = await toolCache.cacheDir(binDir, 'xmake', ver);
|
|
await io.rmRF(binDir);
|
|
await io.rmRF(installer);
|
|
return cacheDir;
|
|
});
|
|
}
|
|
core.addPath(toolDir);
|
|
}
|
|
exports.winInstall = winInstall;
|