mirror of
https://github.com/actions/setup-java
synced 2024-11-13 00:52:39 +00:00
dc1a9f2791
* initial changes * review comments * updated with correct message * linting * update version * updated version
53 lines
1.8 KiB
TypeScript
53 lines
1.8 KiB
TypeScript
import * as core from '@actions/core';
|
|
import * as auth from './auth';
|
|
import { getBooleanInput, isCacheFeatureAvailable } from './util';
|
|
import * as constants from './constants';
|
|
import { restore } from './cache';
|
|
import * as path from 'path';
|
|
import { getJavaDistribution } from './distributions/distribution-factory';
|
|
import { JavaInstallerOptions } from './distributions/base-models';
|
|
|
|
async function run() {
|
|
try {
|
|
const version = core.getInput(constants.INPUT_JAVA_VERSION, { required: true });
|
|
const distributionName = core.getInput(constants.INPUT_DISTRIBUTION, { required: true });
|
|
const architecture = core.getInput(constants.INPUT_ARCHITECTURE);
|
|
const packageType = core.getInput(constants.INPUT_JAVA_PACKAGE);
|
|
const jdkFile = core.getInput(constants.INPUT_JDK_FILE);
|
|
const cache = core.getInput(constants.INPUT_CACHE);
|
|
const checkLatest = getBooleanInput(constants.INPUT_CHECK_LATEST, false);
|
|
|
|
const installerOptions: JavaInstallerOptions = {
|
|
architecture,
|
|
packageType,
|
|
version,
|
|
checkLatest
|
|
};
|
|
|
|
const distribution = getJavaDistribution(distributionName, installerOptions, jdkFile);
|
|
if (!distribution) {
|
|
throw new Error(`No supported distribution was found for input ${distributionName}`);
|
|
}
|
|
|
|
const result = await distribution.setupJava();
|
|
|
|
core.info('');
|
|
core.info('Java configuration:');
|
|
core.info(` Distribution: ${distributionName}`);
|
|
core.info(` Version: ${result.version}`);
|
|
core.info(` Path: ${result.path}`);
|
|
core.info('');
|
|
|
|
const matchersPath = path.join(__dirname, '..', '..', '.github');
|
|
core.info(`##[add-matcher]${path.join(matchersPath, 'java.json')}`);
|
|
|
|
await auth.configureAuthentication();
|
|
if (cache && isCacheFeatureAvailable()) {
|
|
await restore(cache);
|
|
}
|
|
} catch (error) {
|
|
core.setFailed(error.message);
|
|
}
|
|
}
|
|
|
|
run();
|