34 lines
922 B
Bash
Executable File
34 lines
922 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
if [[ ${PUBLISH} == 'On' ]]; then
|
|
echo "PUBLISH is set to '${PUBLISH}', publishing!"
|
|
|
|
echo "node version is:"
|
|
which node
|
|
node -v
|
|
|
|
echo "dumping binary meta..."
|
|
./node_modules/.bin/node-pre-gyp reveal
|
|
|
|
# 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 publish info
|
|
else
|
|
echo "PUBLISH is set to '${PUBLISH}', skipping."
|
|
fi
|