From e6f17eb95447ba8dd22614c1ee73b5df287378a0 Mon Sep 17 00:00:00 2001 From: Ferris Ellis <3579192+code-ape@users.noreply.github.com> Date: Thu, 9 Feb 2023 12:18:58 -0500 Subject: [PATCH] Adding node 16.19.0 to release 0.2.0 --- .github/workflows/nexe-ci.yml | 7 +++++-- RELEASE_LOG.md | 3 ++- bin/install_dependencies | 2 ++ 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nexe-ci.yml b/.github/workflows/nexe-ci.yml index 05fde2b..61f296b 100644 --- a/.github/workflows/nexe-ci.yml +++ b/.github/workflows/nexe-ci.yml @@ -18,8 +18,11 @@ jobs: shell: bash strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - node_version: ['14.16.0', '14.18.0', '14.18.1', '16.11.0', '16.13.0', '16.13.1'] + # TODO: Bump to windows-latest once it can be solved how to install Python2 + # such that the Node.js build system can detect it. + os: [ubuntu-latest, windows-2019, macos-latest] + #node_version: ['14.16.0', '14.18.0', '14.18.1', '16.11.0', '16.13.0', '16.13.1', '16.19.0'] + node_version: ['16.19.0'] steps: - uses: actions/checkout@v3 diff --git a/RELEASE_LOG.md b/RELEASE_LOG.md index 6427a3c..b824ba1 100644 --- a/RELEASE_LOG.md +++ b/RELEASE_LOG.md @@ -11,8 +11,9 @@ * MacOS resolved on 2021-10-29. * Build matrix: * OS: `linux`, `macos`, `windows` - * Node Version: `14.16.0`, `14.18.0`, `14.18.1`, `16.11.0`, `16.13.0`, `16.13.1` + * Node Version: `14.16.0`, `14.18.0`, `14.18.1`, `16.11.0`, `16.13.0`, `16.13.1`, `16.19.0` * Added `16.13.1` on 2022-01-10. + * Added `16.19.0` on 2023-02-09. ## 0.1.1 diff --git a/bin/install_dependencies b/bin/install_dependencies index 6c4740b..c4ff97e 100755 --- a/bin/install_dependencies +++ b/bin/install_dependencies @@ -12,6 +12,8 @@ case "$os_env" in "windows") echo "Installing windows dependencies ..." set -x + # TODO: Install Python2 such that the Node.js build system can detect it + # on Windows Server 2022. choco install nasm set +x ;;