Compare commits
2 Commits
14.15.4-46
...
14.8.0-202
Author | SHA1 | Date | |
---|---|---|---|
|
e40f16e1e0 | ||
|
5c820ab88b |
172
.github/workflows/build-node-packages.yml
vendored
172
.github/workflows/build-node-packages.yml
vendored
@@ -1,172 +0,0 @@
|
|||||||
name: Generate Node.js package
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
VERSION:
|
|
||||||
description: 'Node.js version to build and upload'
|
|
||||||
required: true
|
|
||||||
default: '14.2.0'
|
|
||||||
PUBLISH_RELEASES:
|
|
||||||
description: 'Whether to publish releases'
|
|
||||||
required: true
|
|
||||||
default: 'false'
|
|
||||||
pull_request:
|
|
||||||
paths-ignore:
|
|
||||||
- 'versions-manifest.json'
|
|
||||||
- 'LICENSE'
|
|
||||||
- '**.md'
|
|
||||||
branches:
|
|
||||||
- 'main'
|
|
||||||
|
|
||||||
env:
|
|
||||||
VERSION: ${{ github.event.inputs.VERSION || '14.0.0' }}
|
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
shell: pwsh
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build_node:
|
|
||||||
name: Build Node.js ${{ github.event.inputs.VERSION || '14.0.0' }} [${{ matrix.platform }}]
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
ARTIFACT_NAME: node-${{ github.event.inputs.VERSION || '14.0.0' }}-${{ matrix.platform }}-x64
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
platform: [linux, darwin, win32]
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
submodules: true
|
|
||||||
|
|
||||||
- name: Build Node.js ${{ env.VERSION }}
|
|
||||||
run: |
|
|
||||||
./builders/build-node.ps1 -Version $env:VERSION `
|
|
||||||
-Platform ${{ matrix.platform }}
|
|
||||||
|
|
||||||
- name: Publish artifact
|
|
||||||
uses: actions/upload-artifact@v2
|
|
||||||
with:
|
|
||||||
name: ${{ env.ARTIFACT_NAME }}
|
|
||||||
path: ${{ runner.temp }}/artifact
|
|
||||||
|
|
||||||
test_node:
|
|
||||||
name: Test Node.js ${{ github.event.inputs.VERSION || '14.0.0' }} [${{ matrix.platform }}]
|
|
||||||
needs: build_node
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
env:
|
|
||||||
ARTIFACT_NAME: node-${{ github.event.inputs.VERSION || '14.0.0' }}-${{ matrix.platform }}-x64
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- os: ubuntu-latest
|
|
||||||
platform: linux
|
|
||||||
- os: macos-latest
|
|
||||||
platform: darwin
|
|
||||||
- os: windows-latest
|
|
||||||
platform: win32
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
submodules: true
|
|
||||||
|
|
||||||
- name: Fully cleanup the toolcache directory before testing
|
|
||||||
run: ./helpers/clean-toolcache.ps1 -ToolName "node"
|
|
||||||
|
|
||||||
- name: Download artifact
|
|
||||||
uses: actions/download-artifact@v2
|
|
||||||
with:
|
|
||||||
path: ${{ runner.temp }}
|
|
||||||
|
|
||||||
- name: Extract files
|
|
||||||
run: |
|
|
||||||
if ('${{ matrix.platform }}' -eq 'win32') {
|
|
||||||
$artifactName = "${{ env.ARTIFACT_NAME }}.7z"
|
|
||||||
7z.exe x "$artifactName" -y | Out-Null
|
|
||||||
} else {
|
|
||||||
$artifactName = "${{ env.ARTIFACT_NAME }}.tar.gz"
|
|
||||||
tar -xzf $artifactName
|
|
||||||
}
|
|
||||||
working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
|
|
||||||
|
|
||||||
- name: Apply build artifact to the local machine
|
|
||||||
run: |
|
|
||||||
if ('${{ matrix.platform }}' -eq 'win32') { powershell ./setup.ps1 } else { sh ./setup.sh }
|
|
||||||
working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
|
|
||||||
|
|
||||||
- name: Setup Node.js ${{ env.VERSION }}
|
|
||||||
uses: actions/setup-node@v2.1.2
|
|
||||||
with:
|
|
||||||
node-version: ${{ env.VERSION }}
|
|
||||||
|
|
||||||
- name: Wait for the logs
|
|
||||||
run: |
|
|
||||||
Write-Host "Fake step that do nothing"
|
|
||||||
Write-Host "We need it because log of previous step 'Setup Node' is not available here yet."
|
|
||||||
Write-Host "In testing step (Node.Tests.ps1) we analyze build log of 'Setup Node' task"
|
|
||||||
Write-Host "to determine if Node.js version was consumed from cache and was downloaded"
|
|
||||||
for ($i = 0; $i -lt 200; $i++) { Get-Random }
|
|
||||||
|
|
||||||
- name: Run tests
|
|
||||||
run: |
|
|
||||||
Install-Module Pester -Force -Scope CurrentUser
|
|
||||||
Import-Module Pester
|
|
||||||
Invoke-Pester -Script ./Node.Tests.ps1 -EnableExit
|
|
||||||
working-directory: ./tests
|
|
||||||
|
|
||||||
publish_release:
|
|
||||||
name: Publish release
|
|
||||||
if: github.event_name == 'workflow_dispatch' && github.event.inputs.PUBLISH_RELEASES == 'true'
|
|
||||||
needs: test_node
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/download-artifact@v2
|
|
||||||
|
|
||||||
- name: Publish Release ${{ env.VERSION }}
|
|
||||||
id: create_release
|
|
||||||
uses: actions/create-release@v1
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
tag_name: ${{ env.VERSION }}-${{ github.run_id }}
|
|
||||||
release_name: ${{ env.VERSION }}
|
|
||||||
body: |
|
|
||||||
Node.js ${{ env.VERSION }}
|
|
||||||
|
|
||||||
- name: Upload release assets
|
|
||||||
uses: actions/github-script@v2
|
|
||||||
with:
|
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
script: |
|
|
||||||
const fs = require('fs');
|
|
||||||
|
|
||||||
for (let artifactDir of fs.readdirSync('.')) {
|
|
||||||
let artifactName = fs.readdirSync(`${artifactDir}`)[0];
|
|
||||||
|
|
||||||
console.log(`Upload ${artifactName} asset`);
|
|
||||||
github.repos.uploadReleaseAsset({
|
|
||||||
owner: context.repo.owner,
|
|
||||||
repo: context.repo.repo,
|
|
||||||
release_id: ${{ steps.create_release.outputs.id }},
|
|
||||||
name: artifactName,
|
|
||||||
data: fs.readFileSync(`./${artifactDir}/${artifactName}`)
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
trigger_pr:
|
|
||||||
name: Trigger "Create Pull Request" workflow
|
|
||||||
needs: publish_release
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Trigger "Create Pull Request" workflow
|
|
||||||
uses: actions/github-script@v3
|
|
||||||
with:
|
|
||||||
github-token: ${{ secrets.PERSONAL_TOKEN }}
|
|
||||||
script: |
|
|
||||||
github.actions.createWorkflowDispatch({
|
|
||||||
owner: context.repo.owner,
|
|
||||||
repo: context.repo.repo,
|
|
||||||
workflow_id: 'create-pr.yml',
|
|
||||||
ref: 'main'
|
|
||||||
});
|
|
33
.github/workflows/create-pr.yml
vendored
33
.github/workflows/create-pr.yml
vendored
@@ -1,33 +0,0 @@
|
|||||||
name: Create Pull Request
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
shell: pwsh
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
create_pr:
|
|
||||||
name: Create Pull Request
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
submodules: true
|
|
||||||
|
|
||||||
- name: Create versions-manifest.json
|
|
||||||
run: |
|
|
||||||
./helpers/packages-generation/manifest-generator.ps1 -RepositoryFullName "$env:GITHUB_REPOSITORY" `
|
|
||||||
-GitHubAccessToken "${{secrets.GITHUB_TOKEN}}" `
|
|
||||||
-OutputFile "./versions-manifest.json" `
|
|
||||||
-ConfigurationFile "./config/node-manifest-config.json"
|
|
||||||
- name: Create GitHub PR
|
|
||||||
run: |
|
|
||||||
$formattedDate = Get-Date -Format "MM/dd/yyyy"
|
|
||||||
./helpers/github/create-pull-request.ps1 `
|
|
||||||
-RepositoryFullName "$env:GITHUB_REPOSITORY" `
|
|
||||||
-AccessToken "${{secrets.GITHUB_TOKEN}}" `
|
|
||||||
-BranchName "update-versions-manifest-file" `
|
|
||||||
-CommitMessage "Update versions-manifest" `
|
|
||||||
-PullRequestTitle "[versions-manifest] Update for release from ${formattedDate}" `
|
|
||||||
-PullRequestBody "Update versions-manifest.json for release from ${formattedDate}"
|
|
@@ -29,20 +29,22 @@ Here are a few things you can do that will increase the likelihood of your pull
|
|||||||
### Directory structure
|
### Directory structure
|
||||||
```
|
```
|
||||||
|
|
||||||
├── .github/
|
├── azure-pipelines/
|
||||||
| └──workflows/
|
| └──templates/
|
||||||
├── builders/
|
├── builders/
|
||||||
├── helpers/
|
├── helpers/
|
||||||
├── installers/
|
├── installers/
|
||||||
└── tests/
|
└── tests/
|
||||||
└──sources/
|
└──sources/
|
||||||
```
|
```
|
||||||
- `.github/workflows` - contains repository workflow files.
|
- `azure-pipelines*` - contains global YAML definitions for build pipelines. Reusable templates for specific jobs are located in `templates` subfolder.
|
||||||
- `builders` - contains Node.js builder classes and functions.
|
- `builders` - contains Node.js builder classes and functions.
|
||||||
- `helpers` - contains global helper classes and functions.
|
- `helpers` - contains global helper functions and functions.
|
||||||
- `installers` - contains installation script templates.
|
- `installers` - contains installation script templates.
|
||||||
- `tests` - contains test scripts. Required tests sources are located in `sources` subfolder.
|
- `tests` - contains test scripts. Required tests sources are located in `sources` subfolder.
|
||||||
|
|
||||||
|
\* _We use Azure Pipelines because there are a few features that Actions is still missing, we'll move to Actions as soon as possible_.
|
||||||
|
|
||||||
## Resources
|
## Resources
|
||||||
|
|
||||||
- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/)
|
- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/)
|
||||||
|
65
azure-pipelines/build-node-packages.yml
Normal file
65
azure-pipelines/build-node-packages.yml
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
name: $(date:yyyyMMdd)$(rev:.r)-Node.js-$(VERSION)
|
||||||
|
trigger: none
|
||||||
|
pr:
|
||||||
|
autoCancel: true
|
||||||
|
branches:
|
||||||
|
include:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
exclude:
|
||||||
|
- versions-manifest.json
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- stage: Build_Node_Darwin
|
||||||
|
dependsOn: []
|
||||||
|
variables:
|
||||||
|
Platform: darwin
|
||||||
|
Architecture: x64
|
||||||
|
jobs:
|
||||||
|
- template: /azure-pipelines/templates/build-job.yml
|
||||||
|
|
||||||
|
- stage: Test_Node_Darwin
|
||||||
|
condition: succeeded()
|
||||||
|
dependsOn: Build_Node_Darwin
|
||||||
|
variables:
|
||||||
|
VmImage: macOS-latest
|
||||||
|
Platform: darwin
|
||||||
|
Architecture: x64
|
||||||
|
jobs:
|
||||||
|
- template: /azure-pipelines/templates/test-job.yml
|
||||||
|
|
||||||
|
- stage: Build_Node_Linux
|
||||||
|
dependsOn: []
|
||||||
|
variables:
|
||||||
|
Platform: linux
|
||||||
|
Architecture: x64
|
||||||
|
jobs:
|
||||||
|
- template: /azure-pipelines/templates/build-job.yml
|
||||||
|
|
||||||
|
- stage: Test_Node_Linux
|
||||||
|
condition: succeeded()
|
||||||
|
dependsOn: Build_Node_Linux
|
||||||
|
variables:
|
||||||
|
VmImage: ubuntu-latest
|
||||||
|
Platform: linux
|
||||||
|
Architecture: x64
|
||||||
|
jobs:
|
||||||
|
- template: /azure-pipelines/templates/test-job.yml
|
||||||
|
|
||||||
|
- stage: Build_Node_Windows
|
||||||
|
dependsOn: []
|
||||||
|
variables:
|
||||||
|
Platform: win32
|
||||||
|
Architecture: x64
|
||||||
|
jobs:
|
||||||
|
- template: /azure-pipelines/templates/build-job.yml
|
||||||
|
|
||||||
|
- stage: Test_Node_Windows
|
||||||
|
condition: succeeded()
|
||||||
|
dependsOn: Build_Node_Windows
|
||||||
|
variables:
|
||||||
|
VmImage: windows-latest
|
||||||
|
Platform: win32
|
||||||
|
Architecture: x64
|
||||||
|
jobs:
|
||||||
|
- template: /azure-pipelines/templates/test-job.yml
|
21
azure-pipelines/templates/build-job.yml
Normal file
21
azure-pipelines/templates/build-job.yml
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
jobs:
|
||||||
|
- job: Build_Node
|
||||||
|
timeoutInMinutes: 90
|
||||||
|
pool:
|
||||||
|
name: Azure Pipelines
|
||||||
|
vmImage: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- checkout: self
|
||||||
|
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: 'Build Node $(Version)'
|
||||||
|
inputs:
|
||||||
|
targetType: filePath
|
||||||
|
filePath: './builders/build-node.ps1'
|
||||||
|
arguments: '-Version $(Version) -Platform $(Platform) -Architecture $(Architecture)'
|
||||||
|
|
||||||
|
- task: PublishPipelineArtifact@1
|
||||||
|
displayName: 'Publish Artifact: Node.js $(Version)'
|
||||||
|
inputs:
|
||||||
|
targetPath: '$(Build.ArtifactStagingDirectory)'
|
||||||
|
artifactName: 'node-$(Version)-$(Platform)-$(Architecture)'
|
78
azure-pipelines/templates/test-job.yml
Normal file
78
azure-pipelines/templates/test-job.yml
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
jobs:
|
||||||
|
- job: Test_Node
|
||||||
|
pool:
|
||||||
|
name: Azure Pipelines
|
||||||
|
vmImage: $(VmImage)
|
||||||
|
steps:
|
||||||
|
- checkout: self
|
||||||
|
submodules: true
|
||||||
|
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: Fully cleanup the toolcache directory before testing
|
||||||
|
inputs:
|
||||||
|
targetType: filePath
|
||||||
|
filePath: helpers/clean-toolcache.ps1
|
||||||
|
arguments: -ToolName "node"
|
||||||
|
|
||||||
|
- task: DownloadPipelineArtifact@2
|
||||||
|
inputs:
|
||||||
|
source: 'current'
|
||||||
|
artifact: 'node-$(Version)-$(Platform)-$(Architecture)'
|
||||||
|
path: $(Build.ArtifactStagingDirectory)
|
||||||
|
|
||||||
|
- task: ExtractFiles@1
|
||||||
|
inputs:
|
||||||
|
archiveFilePatterns: '$(Build.ArtifactStagingDirectory)/node-$(Version)-$(Platform)-$(Architecture).*'
|
||||||
|
destinationFolder: $(Build.BinariesDirectory)
|
||||||
|
cleanDestinationFolder: false
|
||||||
|
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: 'Apply build artifact to the local machines'
|
||||||
|
inputs:
|
||||||
|
targetType: inline
|
||||||
|
script: |
|
||||||
|
if ("$(Platform)" -match 'win32') { powershell ./setup.ps1 } else { sh ./setup.sh }
|
||||||
|
workingDirectory: '$(Build.BinariesDirectory)'
|
||||||
|
|
||||||
|
- task: NodeTool@0
|
||||||
|
displayName: 'Use Node $(Version)'
|
||||||
|
inputs:
|
||||||
|
versionSpec: $(Version)
|
||||||
|
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: 'Wait for the logs'
|
||||||
|
inputs:
|
||||||
|
targetType: inline
|
||||||
|
script: |
|
||||||
|
Write-Host "Fake step that do nothing"
|
||||||
|
Write-Host "We need it because log of previous step 'Use Node' is not available here yet."
|
||||||
|
Write-Host "In testing step (Node.Tests.ps1) we analyze build log of 'Use Node' task"
|
||||||
|
Write-Host "to determine if Node.js version was consumed from cache and was downloaded"
|
||||||
|
foreach ($process in Get-Process) {
|
||||||
|
Write-Host "Active process name: $($process.ProcessName)"
|
||||||
|
}
|
||||||
|
- task: PowerShell@2
|
||||||
|
displayName: 'Run tests'
|
||||||
|
inputs:
|
||||||
|
TargetType: inline
|
||||||
|
script: |
|
||||||
|
Install-Module Pester -Force -Scope CurrentUser -RequiredVersion 4.10.1
|
||||||
|
Import-Module Pester
|
||||||
|
$pesterParams = @{
|
||||||
|
Path="./Node.Tests.ps1";
|
||||||
|
Parameters=@{
|
||||||
|
Version="$(Version)";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Invoke-Pester -Script $pesterParams -OutputFile "test_results.xml" -OutputFormat NUnitXml
|
||||||
|
workingDirectory: '$(Build.SourcesDirectory)/tests'
|
||||||
|
|
||||||
|
- task: PublishTestResults@2
|
||||||
|
displayName: 'Publish test results'
|
||||||
|
inputs:
|
||||||
|
testResultsFiles: '*.xml'
|
||||||
|
testResultsFormat: NUnit
|
||||||
|
searchFolder: 'tests'
|
||||||
|
failTaskOnFailedTests: true
|
||||||
|
testRunTitle: "Node.js $(Version)-$(Platform)"
|
||||||
|
condition: always()
|
@@ -1,5 +1,5 @@
|
|||||||
using module "./win-node-builder.psm1"
|
using module "./builders/win-node-builder.psm1"
|
||||||
using module "./nix-node-builder.psm1"
|
using module "./builders/nix-node-builder.psm1"
|
||||||
|
|
||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
using module "./node-builder.psm1"
|
using module "./builders/node-builder.psm1"
|
||||||
|
|
||||||
class NixNodeBuilder : NodeBuilder {
|
class NixNodeBuilder : NodeBuilder {
|
||||||
<#
|
<#
|
||||||
|
@@ -16,13 +16,10 @@ class NodeBuilder {
|
|||||||
The architecture with which Node.js should be built.
|
The architecture with which Node.js should be built.
|
||||||
|
|
||||||
.PARAMETER TempFolderLocation
|
.PARAMETER TempFolderLocation
|
||||||
The location of temporary files that will be used during Node.js package generation.
|
The location of temporary files that will be used during Node.js package generation. Using system BUILD_STAGINGDIRECTORY variable value.
|
||||||
|
|
||||||
.PARAMETER WorkFolderLocation
|
.PARAMETER ArtifactLocation
|
||||||
The location of installation files.
|
The location of generated Node.js artifact. Using system environment BUILD_BINARIESDIRECTORY variable value.
|
||||||
|
|
||||||
.PARAMETER ArtifactFolderLocation
|
|
||||||
The location of generated Node.js artifact.
|
|
||||||
|
|
||||||
.PARAMETER InstallationTemplatesLocation
|
.PARAMETER InstallationTemplatesLocation
|
||||||
The location of installation script template. Using "installers" folder from current repository.
|
The location of installation script template. Using "installers" folder from current repository.
|
||||||
@@ -43,8 +40,9 @@ class NodeBuilder {
|
|||||||
$this.Architecture = $architecture
|
$this.Architecture = $architecture
|
||||||
|
|
||||||
$this.TempFolderLocation = [IO.Path]::GetTempPath()
|
$this.TempFolderLocation = [IO.Path]::GetTempPath()
|
||||||
$this.WorkFolderLocation = Join-Path $env:RUNNER_TEMP "binaries"
|
$this.WorkFolderLocation = $env:BUILD_BINARIESDIRECTORY
|
||||||
$this.ArtifactFolderLocation = Join-Path $env:RUNNER_TEMP "artifact"
|
$this.ArtifactFolderLocation = $env:BUILD_STAGINGDIRECTORY
|
||||||
|
|
||||||
|
|
||||||
$this.InstallationTemplatesLocation = Join-Path -Path $PSScriptRoot -ChildPath "../installers"
|
$this.InstallationTemplatesLocation = Join-Path -Path $PSScriptRoot -ChildPath "../installers"
|
||||||
}
|
}
|
||||||
@@ -86,10 +84,6 @@ class NodeBuilder {
|
|||||||
Generates Node.js artifact from downloaded binaries.
|
Generates Node.js artifact from downloaded binaries.
|
||||||
#>
|
#>
|
||||||
|
|
||||||
Write-Host "Create WorkFolderLocation and ArtifactFolderLocation folders"
|
|
||||||
New-Item -Path $this.WorkFolderLocation -ItemType "directory"
|
|
||||||
New-Item -Path $this.ArtifactFolderLocation -ItemType "directory"
|
|
||||||
|
|
||||||
Write-Host "Download Node.js $($this.Version) [$($this.Architecture)] executable..."
|
Write-Host "Download Node.js $($this.Version) [$($this.Architecture)] executable..."
|
||||||
$binariesArchivePath = $this.Download()
|
$binariesArchivePath = $this.Download()
|
||||||
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
using module "./node-builder.psm1"
|
using module "./builders/node-builder.psm1"
|
||||||
|
|
||||||
class WinNodeBuilder : NodeBuilder {
|
class WinNodeBuilder : NodeBuilder {
|
||||||
<#
|
<#
|
||||||
|
2
helpers
2
helpers
Submodule helpers updated: 3b38e3de4c...68072bedef
@@ -1,17 +1,18 @@
|
|||||||
|
param (
|
||||||
|
[Version] [Parameter (Mandatory = $true)] [ValidateNotNullOrEmpty()]
|
||||||
|
$Version
|
||||||
|
)
|
||||||
|
|
||||||
Import-Module (Join-Path $PSScriptRoot "../helpers/pester-extensions.psm1")
|
Import-Module (Join-Path $PSScriptRoot "../helpers/pester-extensions.psm1")
|
||||||
|
|
||||||
BeforeAll {
|
function Get-UseNodeLogs {
|
||||||
function Get-UseNodeLogs {
|
$logsFolderPath = Join-Path -Path $env:AGENT_HOMEDIRECTORY -ChildPath "_diag" | Join-Path -ChildPath "pages"
|
||||||
# GitHub Windows images don't have `HOME` variable
|
|
||||||
$homeDir = $env:HOME ?? $env:HOMEDRIVE
|
|
||||||
$logsFolderPath = Join-Path -Path $homeDir -ChildPath "runners/*/_diag/pages" -Resolve
|
|
||||||
|
|
||||||
$useNodeLogFile = Get-ChildItem -Path $logsFolderPath | Where-Object {
|
$useNodeLogFile = Get-ChildItem -Path $logsFolderPath | Where-Object {
|
||||||
$logContent = Get-Content $_.Fullname -Raw
|
$logContent = Get-Content $_.Fullname -Raw
|
||||||
return $logContent -match "setup-node@v"
|
return $logContent -match "Use Node"
|
||||||
} | Select-Object -First 1
|
} | Select-Object -First 1
|
||||||
return $useNodeLogFile.Fullname
|
return $useNodeLogFile.Fullname
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Describe "Node.js" {
|
Describe "Node.js" {
|
||||||
@@ -21,16 +22,13 @@ Describe "Node.js" {
|
|||||||
|
|
||||||
It "version is correct" {
|
It "version is correct" {
|
||||||
$versionOutput = Invoke-Expression "node --version"
|
$versionOutput = Invoke-Expression "node --version"
|
||||||
$versionOutput | Should -Match $env:VERSION
|
$versionOutput | Should -Match $Version
|
||||||
}
|
}
|
||||||
|
|
||||||
It "is used from tool-cache" {
|
It "is used from tool-cache" {
|
||||||
$nodePath = (Get-Command "node").Path
|
$nodePath = (Get-Command "node").Path
|
||||||
$nodePath | Should -Not -BeNullOrEmpty
|
$nodePath | Should -Not -BeNullOrEmpty
|
||||||
|
$expectedPath = Join-Path -Path $env:AGENT_TOOLSDIRECTORY -ChildPath "node"
|
||||||
# GitHub Windows images don't have `AGENT_TOOLSDIRECTORY` variable
|
|
||||||
$toolcacheDir = $env:AGENT_TOOLSDIRECTORY ?? $env:RUNNER_TOOL_CACHE
|
|
||||||
$expectedPath = Join-Path -Path $toolcacheDir -ChildPath "node"
|
|
||||||
$nodePath.startsWith($expectedPath) | Should -BeTrue -Because "'$nodePath' is not started with '$expectedPath'"
|
$nodePath.startsWith($expectedPath) | Should -BeTrue -Because "'$nodePath' is not started with '$expectedPath'"
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -39,7 +37,7 @@ Describe "Node.js" {
|
|||||||
$useNodeLogFile = Get-UseNodeLogs
|
$useNodeLogFile = Get-UseNodeLogs
|
||||||
$useNodeLogFile | Should -Exist
|
$useNodeLogFile | Should -Exist
|
||||||
$useNodeLogContent = Get-Content $useNodeLogFile -Raw
|
$useNodeLogContent = Get-Content $useNodeLogFile -Raw
|
||||||
$useNodeLogContent | Should -Match "Found in cache"
|
$useNodeLogContent | Should -Match "Found tool in cache"
|
||||||
}
|
}
|
||||||
|
|
||||||
It "Run simple code" {
|
It "Run simple code" {
|
||||||
|
@@ -1,329 +1,4 @@
|
|||||||
[
|
[
|
||||||
{
|
|
||||||
"version": "14.15.3",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/14.15.3-429909779",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-14.15.3-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.15.3-429909779/node-14.15.3-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.15.3-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.15.3-429909779/node-14.15.3-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.15.3-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.15.3-429909779/node-14.15.3-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "14.15.2",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/14.15.2-425529371",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-14.15.2-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.15.2-425529371/node-14.15.2-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.15.2-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.15.2-425529371/node-14.15.2-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.15.2-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.15.2-425529371/node-14.15.2-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "14.15.1",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/14.15.1-368657841",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-14.15.1-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.15.1-368657841/node-14.15.1-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.15.1-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.15.1-368657841/node-14.15.1-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.15.1-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.15.1-368657841/node-14.15.1-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "14.15.0",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/14.15.0-333017252",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-14.15.0-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.15.0-333017252/node-14.15.0-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.15.0-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.15.0-333017252/node-14.15.0-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.15.0-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.15.0-333017252/node-14.15.0-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "14.14.0",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/14.14.0-310900524",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-14.14.0-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.14.0-310900524/node-14.14.0-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.14.0-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.14.0-310900524/node-14.14.0-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.14.0-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.14.0-310900524/node-14.14.0-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "14.13.1",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/14.13.1-294907768",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-14.13.1-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.13.1-294907768/node-14.13.1-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.13.1-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.13.1-294907768/node-14.13.1-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.13.1-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.13.1-294907768/node-14.13.1-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "14.13.0",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/14.13.0-279958998",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-14.13.0-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.13.0-279958998/node-14.13.0-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.13.0-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.13.0-279958998/node-14.13.0-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.13.0-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.13.0-279958998/node-14.13.0-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "14.12.0",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/14.12.0-268499334",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-14.12.0-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.12.0-268499334/node-14.12.0-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.12.0-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.12.0-268499334/node-14.12.0-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.12.0-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.12.0-268499334/node-14.12.0-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "14.11.0",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/14.11.0-257117476",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-14.11.0-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.11.0-257117476/node-14.11.0-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.11.0-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.11.0-257117476/node-14.11.0-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.11.0-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.11.0-257117476/node-14.11.0-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "14.10.1",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/14.10.1-248429513",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-14.10.1-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.10.1-248429513/node-14.10.1-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.10.1-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.10.1-248429513/node-14.10.1-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.10.1-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.10.1-248429513/node-14.10.1-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "14.10.0",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/14.10.0-245899283",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-14.10.0-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.10.0-245899283/node-14.10.0-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.10.0-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.10.0-245899283/node-14.10.0-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.10.0-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.10.0-245899283/node-14.10.0-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "14.9.0",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/14.9.0-227321496",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-14.9.0-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.9.0-227321496/node-14.9.0-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.9.0-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.9.0-227321496/node-14.9.0-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.9.0-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.9.0-227321496/node-14.9.0-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "14.8.0",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/14.8.0-20200812.4",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-14.8.0-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.8.0-20200812.4/node-14.8.0-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.8.0-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.8.0-20200812.4/node-14.8.0-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-14.8.0-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/14.8.0-20200812.4/node-14.8.0-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"version": "14.7.0",
|
"version": "14.7.0",
|
||||||
"stable": true,
|
"stable": true,
|
||||||
@@ -574,106 +249,6 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"version": "12.20.0",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/12.20.0-382715243",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-12.20.0-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/12.20.0-382715243/node-12.20.0-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-12.20.0-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/12.20.0-382715243/node-12.20.0-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-12.20.0-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/12.20.0-382715243/node-12.20.0-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "12.19.1",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/12.19.1-368658215",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-12.19.1-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/12.19.1-368658215/node-12.19.1-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-12.19.1-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/12.19.1-368658215/node-12.19.1-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-12.19.1-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/12.19.1-368658215/node-12.19.1-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "12.19.0",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/12.19.0-292997882",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-12.19.0-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/12.19.0-292997882/node-12.19.0-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-12.19.0-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/12.19.0-292997882/node-12.19.0-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-12.19.0-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/12.19.0-292997882/node-12.19.0-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "12.18.4",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/12.18.4-257117621",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-12.18.4-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/12.18.4-257117621/node-12.18.4-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-12.18.4-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/12.18.4-257117621/node-12.18.4-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-12.18.4-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/12.18.4-257117621/node-12.18.4-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"version": "12.18.3",
|
"version": "12.18.3",
|
||||||
"stable": true,
|
"stable": true,
|
||||||
@@ -1449,56 +1024,6 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"version": "10.23.0",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/10.23.0-333017621",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-10.23.0-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/10.23.0-333017621/node-10.23.0-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-10.23.0-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/10.23.0-333017621/node-10.23.0-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-10.23.0-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/10.23.0-333017621/node-10.23.0-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "10.22.1",
|
|
||||||
"stable": true,
|
|
||||||
"release_url": "https://github.com/actions/node-versions/releases/tag/10.22.1-257117732",
|
|
||||||
"files": [
|
|
||||||
{
|
|
||||||
"filename": "node-10.22.1-darwin-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "darwin",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/10.22.1-257117732/node-10.22.1-darwin-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-10.22.1-linux-x64.tar.gz",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "linux",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/10.22.1-257117732/node-10.22.1-linux-x64.tar.gz"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"filename": "node-10.22.1-win32-x64.7z",
|
|
||||||
"arch": "x64",
|
|
||||||
"platform": "win32",
|
|
||||||
"download_url": "https://github.com/actions/node-versions/releases/download/10.22.1-257117732/node-10.22.1-win32-x64.7z"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"version": "10.22.0",
|
"version": "10.22.0",
|
||||||
"stable": true,
|
"stable": true,
|
||||||
|
Reference in New Issue
Block a user