Skip to content

Commit

Permalink
removing Node.js v16 from appveyor, updating packages and build.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
agracio committed Aug 25, 2024
1 parent 20cd9cf commit 6c0fdf6
Show file tree
Hide file tree
Showing 4 changed files with 103 additions and 103 deletions.
1 change: 0 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ environment:
- nodejs: "22"
- nodejs: "20"
- nodejs: "18"
- nodejs: "16"

install:
# - sh: if [ "$APPVEYOR_BUILD_WORKER_IMAGE" = 'Ubuntu2204' ]; then sudo apt-get -qq update && sudo apt-get -y -qq install build-essential libgconf-2-4 python3 libglib2.0-dev; fi
Expand Down
198 changes: 99 additions & 99 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"devDependencies": {
"follow-redirects": "^1.15.6",
"junit-report-merger": "7.0.0",
"mocha": "10.4.0",
"mocha": "10.7.3",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1",
"mochawesome": "^7.1.3",
Expand Down
5 changes: 3 additions & 2 deletions tools/build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ exit /b 0

set DESTDIR=%DESTDIRROOT%\%1\%MAJORVERSION%
if not exist "%DESTDIR%" mkdir "%DESTDIR%"
type NUL > %DESTDIR%\v%VERSION%
type NUL > %DESTDIR%\node.version
echo %VERSION%> %DESTDIR%\node.version

if exist "%DESTDIR%\node.exe" goto gyp
echo Downloading node.exe %2 %3...
Expand Down Expand Up @@ -81,7 +82,7 @@ if %ERRORLEVEL% neq 0 (
echo Error copying edge.node %FLAVOR% for node.js %2 v%3
exit /b -1
)

rmdir /S /Q .\build\
copy /y "%DESTDIR%\..\*.dll" "%DESTDIR%"
if %ERRORLEVEL% neq 0 (
echo Error copying VC redist %FLAVOR% to %DESTDIR%
Expand Down

0 comments on commit 6c0fdf6

Please sign in to comment.