Compare commits
107 Commits
16.4.2-100
...
20.0.0-478
Author | SHA1 | Date | |
---|---|---|---|
|
c27b52d5a8 | ||
|
280ff21dab | ||
|
d1c2cb96e1 | ||
|
d4215ec43e | ||
|
9c020055eb | ||
|
80f2e07bc4 | ||
|
2a3603b0e8 | ||
|
f3fac10826 | ||
|
cfedc107f9 | ||
|
a938f96cba | ||
|
3e6fdaa9dd | ||
|
c8117e2a6f | ||
|
a3474c6453 | ||
|
70b3a61620 | ||
|
5d308e3118 | ||
|
5ae9e2a880 | ||
|
85ccf2dd9b | ||
|
1563799473 | ||
|
32e71c3c3b | ||
|
edcf67ef40 | ||
|
72d306dec2 | ||
|
7e8f83364e | ||
|
d065c37c10 | ||
|
6f4ddf8c2c | ||
|
deab417b89 | ||
|
46c45cb2bb | ||
|
80d54cdc81 | ||
|
bcd6df9184 | ||
|
6751014c63 | ||
|
fe2adddc4d | ||
|
4431f5baf6 | ||
|
4414c50507 | ||
|
5dd67ed7f9 | ||
|
ec00a6e346 | ||
|
6c2489748b | ||
|
7ee585b554 | ||
|
86a16e3fbc | ||
|
618e16944c | ||
|
cc0c4db785 | ||
|
dd82515163 | ||
|
3f418bfd29 | ||
|
fd15ad763a | ||
|
02a74240bb | ||
|
9b9e1bad68 | ||
|
e379f2ee0d | ||
|
e6e7799d67 | ||
|
11f6d8a2de | ||
|
b03ec2b334 | ||
|
41fdef674f | ||
|
bb5faa8461 | ||
|
914307fdad | ||
|
7a042473f1 | ||
|
46aed5d195 | ||
|
595b4b690a | ||
|
29a273c108 | ||
|
bb9f13b224 | ||
|
453a014457 | ||
|
cf85dc514f | ||
|
8acc56fc1b | ||
|
a034d4c79d | ||
|
7ce0e62855 | ||
|
ad4c15127c | ||
|
e60aab1337 | ||
|
fff8e8d2e7 | ||
|
9439938c24 | ||
|
7efd2b6d9c | ||
|
9f1448d546 | ||
|
d6c0f3407a | ||
|
7ee0eb6d7f | ||
|
0e81926ec5 | ||
|
2b00037cf2 | ||
|
03a45f2d48 | ||
|
285c046a12 | ||
|
d9cf0e3053 | ||
|
d86ab03024 | ||
|
ad9cb45c2a | ||
|
aa33d265c4 | ||
|
58c3d40bb8 | ||
|
577e22bee8 | ||
|
2200e9ff30 | ||
|
09f8ea5c48 | ||
|
d78f09bbe4 | ||
|
acea7cad3a | ||
|
3257340283 | ||
|
833c6da64b | ||
|
b2560ab6d9 | ||
|
84b6aaeb97 | ||
|
b195064d9c | ||
|
a72cfa7a7c | ||
|
63fc200ef6 | ||
|
ad4714dee5 | ||
|
0287ac915c | ||
|
5c5f144d08 | ||
|
6e415f531b | ||
|
5a83490d4f | ||
|
e5e3b83d13 | ||
|
9405eaa89a | ||
|
947a3202c2 | ||
|
5edc6dfe71 | ||
|
c54f68be31 | ||
|
dcd9e83d63 | ||
|
e530a1172f | ||
|
ee57453268 | ||
|
c0fad79083 | ||
|
484fa88a69 | ||
|
8c866dde54 | ||
|
334a8d1394 |
2
.github/CODEOWNERS
vendored
2
.github/CODEOWNERS
vendored
@@ -1 +1 @@
|
||||
* @actions/virtual-environments-owners
|
||||
* @actions/setup-actions-team
|
||||
|
165
.github/workflows/build-node-packages.yml
vendored
165
.github/workflows/build-node-packages.yml
vendored
@@ -1,15 +1,17 @@
|
||||
name: Generate Node.js package
|
||||
name: Generate Node.js packages
|
||||
run-name: Generate Node.js ${{ inputs.VERSION || '18.12.0' }}
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
VERSION:
|
||||
description: 'Node.js version to build and upload'
|
||||
required: true
|
||||
default: '14.2.0'
|
||||
default: '18.12.0'
|
||||
PUBLISH_RELEASES:
|
||||
description: 'Whether to publish releases'
|
||||
required: true
|
||||
default: 'false'
|
||||
type: boolean
|
||||
default: false
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- 'versions-manifest.json'
|
||||
@@ -18,155 +20,12 @@ on:
|
||||
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
|
||||
node:
|
||||
name: Node
|
||||
uses: actions/versions-package-tools/.github/workflows/build-tool-packages.yml@main
|
||||
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'
|
||||
});
|
||||
tool-name: "node"
|
||||
tool-version: ${{ inputs.VERSION || '18.12.0' }}
|
||||
publish-release: ${{ inputs.PUBLISH_RELEASES || false }}
|
||||
secrets: inherit
|
14
.github/workflows/codeql-analysis.yml
vendored
Normal file
14
.github/workflows/codeql-analysis.yml
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
name: CodeQL analysis
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
schedule:
|
||||
- cron: '0 3 * * 0'
|
||||
|
||||
jobs:
|
||||
call-codeQL-analysis:
|
||||
name: CodeQL analysis
|
||||
uses: actions/reusable-workflows/.github/workflows/codeql-analysis.yml@main
|
31
.github/workflows/create-pr.yml
vendored
31
.github/workflows/create-pr.yml
vendored
@@ -2,32 +2,9 @@ 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
|
||||
create-pr:
|
||||
uses: actions/versions-package-tools/.github/workflows/create-pr-to-update-manifest.yml@main
|
||||
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}"
|
||||
tool-name: "node"
|
||||
secrets: inherit
|
||||
|
13
.github/workflows/get-node-versions.yml
vendored
Normal file
13
.github/workflows/get-node-versions.yml
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
name: Get Node versions
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 3,15 * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
get-new-node-versions:
|
||||
uses: actions/versions-package-tools/.github/workflows/get-new-tool-versions.yml@main
|
||||
with:
|
||||
tool-name: "Node"
|
||||
image-url: "https://nodejs.org/static/images/logo-hexagon-card.png"
|
||||
secrets: inherit
|
21
.github/workflows/validate-manifest.yml
vendored
Normal file
21
.github/workflows/validate-manifest.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
name: Validate manifest
|
||||
on:
|
||||
# The GITHUB_TOKEN secret is used to create a PR
|
||||
# The pull_request event will not be triggered by it
|
||||
# That's one of the reasons we need the schedule to validate the versions-manifest.json file
|
||||
schedule:
|
||||
- cron: '0 8,20 * * *'
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'versions-manifest.json'
|
||||
|
||||
jobs:
|
||||
manifest:
|
||||
uses: actions/versions-package-tools/.github/workflows/validate-manifest.yml@main
|
||||
with:
|
||||
tool-name: "Node"
|
||||
image-url: "https://nodejs.org/static/images/logo-hexagon-card.png"
|
||||
secrets: inherit
|
@@ -1,15 +1,15 @@
|
||||
# Node.js for Actions
|
||||
This repository contains the code and scripts that we use to prepare Node.js packages used in [virtual-environments](https://github.com/actions/virtual-environments) and accessible through the [setup-node](https://github.com/actions/setup-node) Action.
|
||||
This repository contains the code and scripts that we use to prepare Node.js packages used in [runner-images](https://github.com/actions/runner-images) and accessible through the [setup-node](https://github.com/actions/setup-node) Action.
|
||||
The file [versions-manifest.json](./versions-manifest.json) contains the list of available and released versions.
|
||||
|
||||
> Caution: this is prepared for and only permitted for use by actions `virtual-environments` and `setup-node` action.
|
||||
> Caution: this is prepared for and only permitted for use by actions `runner-images` and `setup-node` action.
|
||||
|
||||
**Status**: Currently under development and in use for beta and preview actions. This repo is undergoing rapid changes.
|
||||
|
||||
Latest of LTS versions will be installed on the [virtual-environments](https://github.com/actions/virtual-environments) images. Other versions will be pulled JIT using the [`setup-node`](https://github.com/actions/setup-node) action.
|
||||
Latest of LTS versions will be installed on the [runner-images](https://github.com/actions/runner-images) images. Other versions will be pulled JIT using the [`setup-node`](https://github.com/actions/setup-node) action.
|
||||
|
||||
## Adding new versions
|
||||
We are trying to prepare packages for new versions of Node.js as soon as they are released. Please open an issue in [actions/virtual-environments](https://github.com/actions/virtual-environments) if any versions are missing.
|
||||
We are trying to prepare packages for new versions of Node.js as soon as they are released. Please open an issue in [actions/runner-images](https://github.com/actions/runner-images) if any versions are missing.
|
||||
|
||||
## Contribution
|
||||
Contributions are welcome! See [Contributor's Guide](./CONTRIBUTING.md) for more details about contribution process and code structure
|
||||
|
2
helpers
2
helpers
Submodule helpers updated: 46a901fa87...6f1aa3ce73
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user