Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update node to 16 and fix builds #33

Merged
merged 10 commits into from
Feb 3, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use local prebuild
  • Loading branch information
thiagoelg committed Feb 3, 2022
commit c8c25719fc58b62dbd598901409f895c74f89397
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ before_script:

script:
- npm install -g prebuild
- prebuild --strip --all -r electron --arch ia32 -u $PREBUILD_TOKEN
- prebuild --strip --all -r electron --arch x64 -u $PREBUILD_TOKEN
- prebuild --strip --all --arch ia32 -u $PREBUILD_TOKEN
- prebuild --strip --all --arch x64 -u $PREBUILD_TOKEN
- npm run prebuild --strip --all -r electron --arch ia32 -u $PREBUILD_TOKEN
- npm run prebuild --strip --all -r electron --arch x64 -u $PREBUILD_TOKEN
- npm run prebuild --strip --all --arch ia32 -u $PREBUILD_TOKEN
- npm run prebuild --strip --all --arch x64 -u $PREBUILD_TOKEN

os:
- linux
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ install:
- cmd: if %PLATFORM% EQU x86 (SET TP=ia32) else (set TP=x64)
# - cmd: prebuild --strip -r electron --all --arch %TP% -u %UTO%
# - cmd: prebuild --strip -r node --all --arch %TP% -u %UTO%
- cmd: prebuild --strip --all --arch %TP% -u %UTO%
- cmd: npm run prebuild --strip --all --arch %TP% -u %UTO%
test_script:
- node --version
- npm --version
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"install": "prebuild-install || node-gyp rebuild",
"postinstall": "patch-package",
"prebuild-all": "prebuild --all --force --strip --verbose --openssl_fips=X",
"prebuild": "prebuild",
"rebuild": "node-gyp rebuild",
"test": "nodeunit test"
},
Expand Down