* Use Github Releases for hosting node binaries Replaces S3 hosting of node binaries with Github Releases. `node-pre-gyp publish` works exclusively with S3, so upload step is now performed by the Travis deployment provider. The behaviour for the package user should not change. When building a new version tag, Travis will create a release for the tag if it does not already exist. * Switch to the osrm-release-automation machine account rather than personal credentials. Co-authored-by: Daniel Patterson <danpat@danpat.net>
38 lines
1.0 KiB
Bash
Executable File
38 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
echo "node version is:"
|
|
which node
|
|
node -v
|
|
|
|
if [[ ${PUBLISH} == 'On' ]]; then
|
|
echo "PUBLISH is set to '${PUBLISH}', publishing!"
|
|
NPM_FLAGS=''
|
|
if [[ ${BUILD_TYPE} == "Debug" ]]; then
|
|
NPM_FLAGS='--debug'
|
|
fi
|
|
|
|
echo "dumping binary meta..."
|
|
./node_modules/.bin/node-pre-gyp reveal $NPM_FLAGS
|
|
|
|
# enforce that binary has proper ORIGIN flags so that
|
|
# it can portably find libtbb.so in the same directory
|
|
if [[ $(uname -s) == 'Linux' ]]; then
|
|
readelf -d ./lib/binding/node_osrm.node > readelf-output.txt
|
|
if grep -q 'Flags: ORIGIN' readelf-output.txt; then
|
|
echo "Found ORIGIN flag in readelf output"
|
|
cat readelf-output.txt
|
|
else
|
|
echo "*** Error: Could not found ORIGIN flag in readelf output"
|
|
cat readelf-output.txt
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
./node_modules/.bin/node-pre-gyp package testpackage $NPM_FLAGS
|
|
else
|
|
echo "PUBLISH is set to '${PUBLISH}', skipping."
|
|
fi
|