Skip to content

Commit

Permalink
v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
addaleax committed Apr 22, 2020
1 parent d2ae190 commit 0d1de61
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ after_success:

before_deploy:
- ARCHIVE_NAME="${TRAVIS_TAG:-latest}-$TRAVIS_OS_NAME-`uname -m`.tar"
- npm run prebuild
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ARCH=ia32 npm run prebuild; fi
- npm run prebuild --v8_enable_pointer_compression=false --v8_enable_31bit_smis_on_64bit_arch=false
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ARCH=ia32 npm run prebuild --v8_enable_pointer_compression=false --v8_enable_31bit_smis_on_64bit_arch=false; fi
- tar --create --verbose --file="$ARCHIVE_NAME" --directory "$TRAVIS_BUILD_DIR/prebuilds" .

deploy:
Expand All @@ -54,4 +54,4 @@ deploy:
on:
tags: true
node: 12
api_key: $PREBUILD_GITHUB_TOKEN
api_key: $PREBUILD_GITHUB_TOKEN
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ test_script:
- npm test

after_test:
- ps: If ($env:nodejs_version -eq "12") { npm run prebuild }
- ps: If ($env:nodejs_version -eq "12") { npm run prebuild --v8_enable_pointer_compression=false --v8_enable_31bit_smis_on_64bit_arch=false }

# Don't actually build.
build: off
Expand All @@ -53,4 +53,4 @@ deploy:
auth_token: $(PREBUILD_GITHUB_TOKEN)
on:
appveyor_repo_tag: true
nodejs_version: "12"
nodejs_version: "12"
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ffi-napi",
"version": "2.4.7",
"version": "2.5.0",
"license": "MIT",
"author": "Anna Henningsen <[email protected]>",
"contributors": [
Expand Down Expand Up @@ -30,7 +30,7 @@
"get-uv-event-loop-napi-h": "^1.0.5",
"node-addon-api": "1.6.1",
"node-gyp-build": "^4.2.1",
"ref-napi": "^1.4.0",
"ref-napi": "^1.5.2",
"ref-struct-di": "^1.1.0"
},
"devDependencies": {
Expand Down

0 comments on commit 0d1de61

Please sign in to comment.