2019-07-10 14:54:25 +00:00
|
|
|
import * as core from '@actions/core';
|
2019-07-11 03:11:48 +00:00
|
|
|
import * as installer from './installer';
|
2019-11-16 00:01:13 +00:00
|
|
|
import * as auth from './auth';
|
2019-07-12 02:57:54 +00:00
|
|
|
import * as path from 'path';
|
2019-07-10 14:54:25 +00:00
|
|
|
|
|
|
|
async function run() {
|
2019-07-11 03:11:48 +00:00
|
|
|
try {
|
2019-08-13 20:24:39 +00:00
|
|
|
let version = core.getInput('version');
|
|
|
|
if (!version) {
|
|
|
|
version = core.getInput('java-version', {required: true});
|
|
|
|
}
|
2019-07-11 03:11:48 +00:00
|
|
|
const arch = core.getInput('architecture', {required: true});
|
2019-11-03 04:39:35 +00:00
|
|
|
const javaPackage = core.getInput('java-package', {required: true});
|
2019-07-15 15:26:32 +00:00
|
|
|
const jdkFile = core.getInput('jdkFile', {required: false}) || '';
|
2019-07-11 03:11:48 +00:00
|
|
|
|
2019-11-03 04:39:35 +00:00
|
|
|
await installer.getJava(version, arch, jdkFile, javaPackage);
|
2019-07-12 02:57:54 +00:00
|
|
|
|
2019-11-28 17:52:58 +00:00
|
|
|
const matchersPath = path.join(__dirname, '..', '.github');
|
|
|
|
console.log(`##[add-matcher]${path.join(matchersPath, 'java.json')}`);
|
|
|
|
|
2019-12-19 22:20:17 +00:00
|
|
|
const id = core.getInput('server-id', {required: false}) || undefined;
|
2019-12-19 23:39:48 +00:00
|
|
|
const username =
|
|
|
|
core.getInput('server-username', {required: false}) || undefined;
|
|
|
|
const password =
|
|
|
|
core.getInput('server-password', {required: false}) || undefined;
|
2019-11-16 00:01:13 +00:00
|
|
|
|
2019-12-19 19:28:11 +00:00
|
|
|
await auth.configAuthentication(id, username, password);
|
2019-07-11 03:11:48 +00:00
|
|
|
} catch (error) {
|
|
|
|
core.setFailed(error.message);
|
|
|
|
}
|
2019-07-10 14:54:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
run();
|