mirror of
https://github.com/actions/setup-node.git
synced 2025-07-23 23:18:25 +02:00
initial changes
This commit is contained in:
parent
b717bf1b71
commit
40b42f047e
9 changed files with 1506 additions and 2 deletions
50
src/distibutions/official_builds/rc/rc_builds.ts
Normal file
50
src/distibutions/official_builds/rc/rc_builds.ts
Normal file
|
@ -0,0 +1,50 @@
|
|||
import * as core from '@actions/core';
|
||||
|
||||
import * as semver from 'semver';
|
||||
|
||||
import BaseDistribution from '../../base-distribution';
|
||||
import {INodejs, INodeVersion} from '../../base-models';
|
||||
|
||||
export default class RcBuild extends BaseDistribution {
|
||||
constructor(nodeInfo: INodejs) {
|
||||
super(nodeInfo);
|
||||
}
|
||||
|
||||
protected async getNodejsVersions(): Promise<INodeVersion[]> {
|
||||
const initialUrl = this.getDistributionUrl();
|
||||
const dataUrl = `${initialUrl}/index.json`;
|
||||
|
||||
let response = await this.httpClient.getJson<INodeVersion[]>(dataUrl);
|
||||
return response.result || [];
|
||||
}
|
||||
|
||||
protected evaluateVersions(nodeVersions: INodeVersion[]): string {
|
||||
let version = '';
|
||||
const versions = this.filterVersions(nodeVersions);
|
||||
core.debug(`evaluating ${versions.length} versions`);
|
||||
|
||||
for (let i = versions.length - 1; i >= 0; i--) {
|
||||
const potential: string = versions[i];
|
||||
const satisfied: boolean = semver.satisfies(
|
||||
potential,
|
||||
this.nodeInfo.versionSpec
|
||||
);
|
||||
if (satisfied) {
|
||||
version = potential;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (version) {
|
||||
core.debug(`matched: ${version}`);
|
||||
} else {
|
||||
core.debug('match not found');
|
||||
}
|
||||
|
||||
return version;
|
||||
}
|
||||
|
||||
getDistributionUrl(): string {
|
||||
return 'https://nodejs.org/download/rc';
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue