Skip to content

Commit

Permalink
Adding node 16.19.0 to release 0.2.0 (#37)
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
code-ape authored Feb 9, 2023
1 parent bb825cd commit 045e233
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/nexe-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion RELEASE_LOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 2 additions & 0 deletions bin/install_dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -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
;;
Expand Down

0 comments on commit 045e233

Please sign in to comment.