Compare commits
22 Commits
14.13.0-27
...
12.20.1-46
Author | SHA1 | Date | |
---|---|---|---|
|
fbeb7d747d | ||
|
445b5079f1 | ||
|
07c6e38e3e | ||
|
805c28590c | ||
|
72562f08b4 | ||
|
adde90d079 | ||
|
6772ce992e | ||
|
196a7ffaab | ||
|
5803dd40ce | ||
|
15c3ac315a | ||
|
4790533e80 | ||
|
c01749b1c4 | ||
|
01407a89d3 | ||
|
ff6bcb4ec0 | ||
|
a229d53240 | ||
|
593745d7c2 | ||
|
e459abbdbe | ||
|
f01c560f7f | ||
|
2b37bf1f1e | ||
|
fe299f9388 | ||
|
bbb4ceccb0 | ||
|
d8a00be11c |
21
.github/workflows/build-node-packages.yml
vendored
21
.github/workflows/build-node-packages.yml
vendored
@@ -10,19 +10,26 @@ on:
|
||||
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 }}
|
||||
VERSION: ${{ github.event.inputs.VERSION || '14.0.0' }}
|
||||
defaults:
|
||||
run:
|
||||
shell: pwsh
|
||||
|
||||
jobs:
|
||||
build_node:
|
||||
name: Build Node.js ${{ github.event.inputs.VERSION }} [${{ matrix.platform }}]
|
||||
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 }}-${{ matrix.platform }}-x64
|
||||
ARTIFACT_NAME: node-${{ github.event.inputs.VERSION || '14.0.0' }}-${{ matrix.platform }}-x64
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
@@ -44,11 +51,11 @@ jobs:
|
||||
path: ${{ runner.temp }}/artifact
|
||||
|
||||
test_node:
|
||||
name: Test Node.js ${{ github.event.inputs.VERSION }} [${{ matrix.platform }}]
|
||||
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 }}-${{ matrix.platform }}-x64
|
||||
ARTIFACT_NAME: node-${{ github.event.inputs.VERSION || '14.0.0' }}-${{ matrix.platform }}-x64
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
@@ -89,7 +96,7 @@ jobs:
|
||||
working-directory: ${{ runner.temp }}/${{ env.ARTIFACT_NAME }}
|
||||
|
||||
- name: Setup Node.js ${{ env.VERSION }}
|
||||
uses: actions/setup-node@v2.1.1
|
||||
uses: actions/setup-node@v2.1.2
|
||||
with:
|
||||
node-version: ${{ env.VERSION }}
|
||||
|
||||
@@ -110,7 +117,7 @@ jobs:
|
||||
|
||||
publish_release:
|
||||
name: Publish release
|
||||
if: github.event.inputs.PUBLISH_RELEASES == 'true'
|
||||
if: github.event_name == 'workflow_dispatch' && github.event.inputs.PUBLISH_RELEASES == 'true'
|
||||
needs: test_node
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
@@ -1,5 +1,5 @@
|
||||
using module "./builders/win-node-builder.psm1"
|
||||
using module "./builders/nix-node-builder.psm1"
|
||||
using module "./win-node-builder.psm1"
|
||||
using module "./nix-node-builder.psm1"
|
||||
|
||||
<#
|
||||
.SYNOPSIS
|
||||
|
@@ -1,4 +1,4 @@
|
||||
using module "./builders/node-builder.psm1"
|
||||
using module "./node-builder.psm1"
|
||||
|
||||
class NixNodeBuilder : NodeBuilder {
|
||||
<#
|
||||
|
@@ -1,4 +1,4 @@
|
||||
using module "./builders/node-builder.psm1"
|
||||
using module "./node-builder.psm1"
|
||||
|
||||
class WinNodeBuilder : NodeBuilder {
|
||||
<#
|
||||
|
@@ -1,4 +1,179 @@
|
||||
[
|
||||
{
|
||||
"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,
|
||||
@@ -399,6 +574,81 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"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,
|
||||
@@ -1199,6 +1449,31 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"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,
|
||||
|
Reference in New Issue
Block a user