Update mechanic of outputting installed dotnet version

pull/428/head
IvanZosimov 2 years ago
parent c5a57b219c
commit 0bc43909e0

@ -4,7 +4,6 @@ import * as exec from '@actions/exec';
import * as io from '@actions/io'; import * as io from '@actions/io';
import * as hc from '@actions/http-client'; import * as hc from '@actions/http-client';
import {chmodSync} from 'fs'; import {chmodSync} from 'fs';
import {readdir} from 'fs/promises';
import path from 'path'; import path from 'path';
import os from 'os'; import os from 'os';
import semver from 'semver'; import semver from 'semver';
@ -199,7 +198,6 @@ export class DotnetCoreInstaller {
} }
public async installDotnet(): Promise<string> { public async installDotnet(): Promise<string> {
const listOfInstalledVersions = await this.getListOfInstalledVersions();
const windowsDefaultOptions = [ const windowsDefaultOptions = [
'-NoLogo', '-NoLogo',
'-Sta', '-Sta',
@ -259,7 +257,7 @@ export class DotnetCoreInstaller {
ignoreReturnCode: true, ignoreReturnCode: true,
env: process.env as {string: string} env: process.env as {string: string}
}; };
const {exitCode, stderr} = await exec.getExecOutput( const {exitCode, stdout, stderr} = await exec.getExecOutput(
`"${scriptPath}"`, `"${scriptPath}"`,
scriptArguments, scriptArguments,
getExecOutputOptions getExecOutputOptions
@ -269,25 +267,19 @@ export class DotnetCoreInstaller {
`Failed to install dotnet, exit code: ${exitCode}. ${stderr}` `Failed to install dotnet, exit code: ${exitCode}. ${stderr}`
); );
} }
return await this.outputDotnetVersion(listOfInstalledVersions);
}
private async getListOfInstalledVersions(): Promise<string[]> { return this.parseInstalledVersion(stdout);
const installationPath = process.env['DOTNET_INSTALL_DIR']!;
const versionsOnRunner: string[] = (
await readdir(path.join(installationPath.replace(/'/g, ''), 'sdk'))
).filter(el => semver.valid(el));
return versionsOnRunner;
} }
private async outputDotnetVersion( private parseInstalledVersion(stdout: string): string {
listOfInstalledVersions: string[] const regex = /(?<version>\d+\.\d+\.\d+[a-z0-9._-]*)/gm;
): Promise<string> { const matchedResult = regex.exec(stdout);
const updatedListOfInstalledVersions =
await this.getListOfInstalledVersions(); if (!matchedResult) {
const installedVersion = updatedListOfInstalledVersions.filter( throw new Error(
el => !listOfInstalledVersions.includes(el) `Failed to parse installed by the script version of .NET`
); );
return installedVersion[0]; }
return matchedResult.groups!.version;
} }
} }

Loading…
Cancel
Save