Skip to content

Commit

Permalink
update logic of outputting dotnet-version
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanZosimov committed May 16, 2023
1 parent e850185 commit fefaa59
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 25 deletions.
40 changes: 32 additions & 8 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,8 @@ class DotnetCoreInstaller {
const regex = /(?<version>\d+\.\d+\.\d+[a-z0-9._-]*)/gm;
const matchedResult = regex.exec(stdout);
if (!matchedResult) {
throw new Error(`Failed to parse installed by the script version of .NET`);
core.warning(`Failed to parse installed by the script version of .NET`);
return null;
}
return matchedResult.groups.version;
}
Expand Down Expand Up @@ -577,13 +578,18 @@ function run() {
if (sourceUrl) {
auth.configAuthentication(sourceUrl, configFile);
}
const comparisonRange = globalJsonFileInput
? versions[versions.length - 1]
: '*';
const versionToOutput = semver_1.default.maxSatisfying(installedDotnetVersions, comparisonRange, {
includePrerelease: true
});
core.setOutput('dotnet-version', versionToOutput);
// const comparisonRange: string = globalJsonFileInput
// ? versions[versions.length - 1]!
// : '*';
// const versionToOutput = semver.maxSatisfying(
// installedDotnetVersions,
// comparisonRange,
// {
// includePrerelease: true
// }
// );
// core.setOutput('dotnet-version', versionToOutput);
outputInstalledVersion(installedDotnetVersions, globalJsonFileInput);
const matchersPath = path_1.default.join(__dirname, '..', '.github');
core.info(`##[add-matcher]${path_1.default.join(matchersPath, 'csc.json')}`);
}
Expand All @@ -608,6 +614,24 @@ function getVersionFromGlobalJson(globalJsonPath) {
}
return version;
}
function outputInstalledVersion(installedVersions, globalJsonFileInput) {
if (!installedVersions.length) {
core.info(`No .NET version was installed. The 'dotnet-version' output will not be set.`);
}
if (installedVersions.includes(null)) {
core.warning(`Failed to output the installed version of .NET. The 'dotnet-version' output will not be set.`);
return;
}
if (globalJsonFileInput) {
const versionToOutput = installedVersions.at(-1);
core.setOutput('dotnet-version', versionToOutput);
return;
}
const versionToOutput = semver_1.default.maxSatisfying(installedVersions, '*', {
includePrerelease: true
});
core.setOutput('dotnet-version', versionToOutput);
}
run();


Expand Down
9 changes: 4 additions & 5 deletions src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export class DotnetCoreInstaller {
}
}

public async installDotnet(): Promise<string> {
public async installDotnet(): Promise<string | null> {
const windowsDefaultOptions = [
'-NoLogo',
'-Sta',
Expand Down Expand Up @@ -271,14 +271,13 @@ export class DotnetCoreInstaller {
return this.parseInstalledVersion(stdout);
}

private parseInstalledVersion(stdout: string): string {
private parseInstalledVersion(stdout: string): string | null {
const regex = /(?<version>\d+\.\d+\.\d+[a-z0-9._-]*)/gm;
const matchedResult = regex.exec(stdout);

if (!matchedResult) {
throw new Error(
`Failed to parse installed by the script version of .NET`
);
core.warning(`Failed to parse installed by the script version of .NET`);
return null;
}
return matchedResult.groups!.version;
}
Expand Down
58 changes: 46 additions & 12 deletions src/setup-dotnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export async function run() {
// Proxy, auth, (etc) are still set up, even if no version is identified
//
const versions = core.getMultilineInput('dotnet-version');
const installedDotnetVersions: string[] = [];
const installedDotnetVersions: (string | null)[] = [];

const globalJsonFileInput = core.getInput('global-json-file');
if (globalJsonFileInput) {
Expand Down Expand Up @@ -78,19 +78,20 @@ export async function run() {
auth.configAuthentication(sourceUrl, configFile);
}

const comparisonRange: string = globalJsonFileInput
? versions[versions.length - 1]!
: '*';
// const comparisonRange: string = globalJsonFileInput
// ? versions[versions.length - 1]!
// : '*';

const versionToOutput = semver.maxSatisfying(
installedDotnetVersions,
comparisonRange,
{
includePrerelease: true
}
);
// const versionToOutput = semver.maxSatisfying(
// installedDotnetVersions,
// comparisonRange,
// {
// includePrerelease: true
// }
// );

core.setOutput('dotnet-version', versionToOutput);
// core.setOutput('dotnet-version', versionToOutput);
outputInstalledVersion(installedDotnetVersions, globalJsonFileInput);

const matchersPath = path.join(__dirname, '..', '.github');
core.info(`##[add-matcher]${path.join(matchersPath, 'csc.json')}`);
Expand All @@ -116,4 +117,37 @@ function getVersionFromGlobalJson(globalJsonPath: string): string {
return version;
}

function outputInstalledVersion(
installedVersions: (string | null)[],
globalJsonFileInput: string
): void {
if (!installedVersions.length) {
core.info(
`No .NET version was installed. The 'dotnet-version' output will not be set.`
);
}
if (installedVersions.includes(null)) {
core.warning(
`Failed to output the installed version of .NET. The 'dotnet-version' output will not be set.`
);
return;
}

if (globalJsonFileInput) {
const versionToOutput = installedVersions.at(-1);
core.setOutput('dotnet-version', versionToOutput);
return;
}

const versionToOutput = semver.maxSatisfying(
installedVersions as string[],
'*',
{
includePrerelease: true
}
);

core.setOutput('dotnet-version', versionToOutput);
}

run();

0 comments on commit fefaa59

Please sign in to comment.