Compare commits
22 Commits
14.10.0-24
...
14.15.1-36
Author | SHA1 | Date | |
---|---|---|---|
|
5803dd40ce | ||
|
15c3ac315a | ||
|
4790533e80 | ||
|
c01749b1c4 | ||
|
01407a89d3 | ||
|
ff6bcb4ec0 | ||
|
a229d53240 | ||
|
593745d7c2 | ||
|
e459abbdbe | ||
|
f01c560f7f | ||
|
2b37bf1f1e | ||
|
fe299f9388 | ||
|
bbb4ceccb0 | ||
|
d8a00be11c | ||
|
cb6506c1cc | ||
|
69c87ed4ce | ||
|
36757fae02 | ||
|
05026253f5 | ||
|
2da30901b3 | ||
|
d2b2d6cf72 | ||
|
b6945a3f95 | ||
|
17f4719d01 |
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,204 @@
|
||||
[
|
||||
{
|
||||
"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,
|
||||
@@ -299,6 +499,56 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"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",
|
||||
"stable": true,
|
||||
@@ -1074,6 +1324,56 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"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",
|
||||
"stable": true,
|
||||
|
Reference in New Issue
Block a user