From 045e2335dffffceb44ae1aab32ef955fbc94e05d Mon Sep 17 00:00:00 2001 From: Ferris <3579192+code-ape@users.noreply.github.com> Date: Thu, 9 Feb 2023 14:35:41 -0500 Subject: [PATCH] Adding node 16.19.0 to release 0.2.0 (#37) 1. Adding node 16.19.0 to release 0.2.0, via `.github/workflows/nexe-ci.yml`. 2. Pinned Github Actions build matrix to Windows Server 2019 as current system does not work on 2022, via `.github/workflows/nexe-ci.yml`. --- .github/workflows/nexe-ci.yml | 6 ++++-- RELEASE_LOG.md | 3 ++- bin/install_dependencies | 2 ++ 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nexe-ci.yml b/.github/workflows/nexe-ci.yml index 05fde2b..bf88883 100644 --- a/.github/workflows/nexe-ci.yml +++ b/.github/workflows/nexe-ci.yml @@ -18,8 +18,10 @@ 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'] 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 ;;