File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
packages/cubejs-backend-native Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ jobs:
123
123
retry_wait_seconds : 15
124
124
command : |
125
125
cd packages/cubejs-backend-native
126
- npm run upload-binary
126
+ npm run upload-binary-cross
127
127
128
128
native :
129
129
runs-on : ${{ matrix.os-version }}
Original file line number Diff line number Diff line change 16
16
"native:build-debug" : " npm run native:build --" ,
17
17
"native:build-release" : " npm run native:build -- --release" ,
18
18
"install" : " node-pre-gyp install || echo 'Your system is not supported by @cubejs-backend/native, some feature will be unavailable.'" ,
19
- "upload-binary" : " mkdir -p native && cp index.node native/index.node && node-pre-gyp package --target_arch=$PACKAGE_TARGET_ARCH --target_platform=$PACKAGE_TARGET_PLATFORM --target_libc=$PACKAGE_TARGET_LIBC && node-pre-gyp-github publish" ,
19
+ "upload-binary-cross" : " mkdir -p native && cp index.node native/index.node && node-pre-gyp package --target_arch=$PACKAGE_TARGET_ARCH --target_platform=$PACKAGE_TARGET_PLATFORM --target_libc=$PACKAGE_TARGET_LIBC && node-pre-gyp-github publish" ,
20
+ "upload-binary" : " mkdir -p native && cp index.node native/index.node && node-pre-gyp package && node-pre-gyp-github publish" ,
20
21
"test:unit" : " jest --forceExit test" ,
21
22
"test:cargo" : " cargo test"
22
23
},
You can’t perform that action at this time.
0 commit comments