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-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 {
|
|
|
|
const version = core.getInput('version', {required: true});
|
|
|
|
const arch = core.getInput('architecture', {required: true});
|
|
|
|
const jdkFile = core.getInput('jdkFile', {required: true});
|
|
|
|
|
|
|
|
await installer.getJava(version, arch, jdkFile);
|
2019-07-12 02:57:54 +00:00
|
|
|
|
|
|
|
const matchersPath = path.join(__dirname, '..', '.github');
|
|
|
|
console.log(`##[add-matcher]${path.join(matchersPath, 'java.json')}`);
|
2019-07-11 03:11:48 +00:00
|
|
|
} catch (error) {
|
|
|
|
core.setFailed(error.message);
|
|
|
|
}
|
2019-07-10 14:54:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
run();
|