Skip to content

Commit f2da928

Browse files
author
Vladimir Safonkin
authored
Merge pull request #224 from vsafonkin/v-vlsafo/handle-roll-forward-option
Support `rollForward` option from `global.json` file
2 parents f0b9e4c + fb9fd97 commit f2da928

File tree

3 files changed

+58
-14
lines changed

3 files changed

+58
-14
lines changed

__tests__/setup-dotnet.test.ts

+24-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const toolDir = path.join(__dirname, 'runner', 'tools2');
77
const tempDir = path.join(__dirname, 'runner', 'temp2');
88

99
import * as setup from '../src/setup-dotnet';
10+
import * as dotnetInstaller from '../src/installer';
1011

1112
const IS_WINDOWS = process.platform === 'win32';
1213

@@ -19,7 +20,7 @@ describe('setup-dotnet tests', () => {
1920
await io.rmRF(tempDir);
2021
});
2122

22-
afterAll(async () => {
23+
afterEach(async () => {
2324
try {
2425
await io.rmRF(path.join(process.cwd(), 'global.json'));
2526
await io.rmRF(toolDir);
@@ -44,4 +45,26 @@ describe('setup-dotnet tests', () => {
4445
expect(fs.existsSync(path.join(toolDir, 'dotnet'))).toBe(true);
4546
}
4647
}, 400000);
48+
49+
it('Acquires version of dotnet from global.json with rollForward option, install the latest patch', async () => {
50+
const globalJsonPath = path.join(process.cwd(), 'global.json');
51+
const jsonContents = `{${os.EOL}"sdk": {${os.EOL}"version":"3.1.201",${os.EOL}"rollForward":"latestFeature"${os.EOL}}${os.EOL}}`;
52+
if (!fs.existsSync(globalJsonPath)) {
53+
fs.writeFileSync(globalJsonPath, jsonContents);
54+
}
55+
56+
const version = '3.1';
57+
const installer = new dotnetInstaller.DotnetCoreInstaller(version);
58+
const patchVersion = await installer.resolveVersion(
59+
new dotnetInstaller.DotNetVersionInfo(version)
60+
);
61+
await setup.run();
62+
63+
expect(fs.existsSync(path.join(toolDir, 'sdk', patchVersion))).toBe(true);
64+
if (IS_WINDOWS) {
65+
expect(fs.existsSync(path.join(toolDir, 'dotnet.exe'))).toBe(true);
66+
} else {
67+
expect(fs.existsSync(path.join(toolDir, 'dotnet'))).toBe(true);
68+
}
69+
}, 400000);
4770
});

dist/index.js

+16-6
Original file line numberDiff line numberDiff line change
@@ -7829,12 +7829,7 @@ function run() {
78297829
core.debug('No version found, trying to find version from global.json');
78307830
const globalJsonPath = path.join(process.cwd(), 'global.json');
78317831
if (fs.existsSync(globalJsonPath)) {
7832-
const globalJson = JSON.parse(
7833-
// .trim() is necessary to strip BOM https://github.com/nodejs/node/issues/20649
7834-
fs.readFileSync(globalJsonPath, { encoding: 'utf8' }).trim());
7835-
if (globalJson.sdk && globalJson.sdk.version) {
7836-
version = globalJson.sdk.version;
7837-
}
7832+
version = getVersionFromGlobalJson(globalJsonPath);
78387833
}
78397834
}
78407835
if (version) {
@@ -7857,6 +7852,21 @@ function run() {
78577852
});
78587853
}
78597854
exports.run = run;
7855+
function getVersionFromGlobalJson(globalJsonPath) {
7856+
let version = '';
7857+
const globalJson = JSON.parse(
7858+
// .trim() is necessary to strip BOM https://github.com/nodejs/node/issues/20649
7859+
fs.readFileSync(globalJsonPath, { encoding: 'utf8' }).trim());
7860+
if (globalJson.sdk && globalJson.sdk.version) {
7861+
version = globalJson.sdk.version;
7862+
const rollForward = globalJson.sdk.rollForward;
7863+
if (rollForward && rollForward === 'latestFeature') {
7864+
const [major, minor] = version.split('.');
7865+
version = `${major}.${minor}`;
7866+
}
7867+
}
7868+
return version;
7869+
}
78607870
run();
78617871

78627872

src/setup-dotnet.ts

+18-7
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,7 @@ export async function run() {
1919
core.debug('No version found, trying to find version from global.json');
2020
const globalJsonPath = path.join(process.cwd(), 'global.json');
2121
if (fs.existsSync(globalJsonPath)) {
22-
const globalJson = JSON.parse(
23-
// .trim() is necessary to strip BOM https://github.com/nodejs/node/issues/20649
24-
fs.readFileSync(globalJsonPath, {encoding: 'utf8'}).trim()
25-
);
26-
if (globalJson.sdk && globalJson.sdk.version) {
27-
version = globalJson.sdk.version;
28-
}
22+
version = getVersionFromGlobalJson(globalJsonPath);
2923
}
3024
}
3125

@@ -54,4 +48,21 @@ export async function run() {
5448
}
5549
}
5650

51+
function getVersionFromGlobalJson(globalJsonPath: string): string {
52+
let version: string = '';
53+
const globalJson = JSON.parse(
54+
// .trim() is necessary to strip BOM https://github.com/nodejs/node/issues/20649
55+
fs.readFileSync(globalJsonPath, {encoding: 'utf8'}).trim()
56+
);
57+
if (globalJson.sdk && globalJson.sdk.version) {
58+
version = globalJson.sdk.version;
59+
const rollForward = globalJson.sdk.rollForward;
60+
if (rollForward && rollForward === 'latestFeature') {
61+
const [major, minor] = version.split('.');
62+
version = `${major}.${minor}`;
63+
}
64+
}
65+
return version;
66+
}
67+
5768
run();

0 commit comments

Comments
 (0)