2020-05-23 14:46:45 +00:00
|
|
|
#!/usr/bin/env bash
|
2020-05-23 03:36:30 +00:00
|
|
|
|
|
|
|
# Script used with Drone CI to check that a statically build lokinet only links against the expected
|
|
|
|
# base system libraries. Expects to be run with pwd of the build directory.
|
|
|
|
|
|
|
|
set -o errexit
|
|
|
|
|
2020-05-23 14:46:45 +00:00
|
|
|
bad=
|
|
|
|
if [ "$DRONE_STAGE_OS" == "darwin" ]; then
|
|
|
|
if otool -L daemon/lokinet | grep -Ev '^daemon/lokinet:|^\t(/usr/lib/libSystem\.|/usr/lib/libc\+\+\.|/System/Library/Frameworks/CoreFoundation)'; then
|
|
|
|
bad=1
|
|
|
|
fi
|
|
|
|
elif [ "$DRONE_STAGE_OS" == "linux" ]; then
|
|
|
|
if ldd daemon/lokinet | grep -Ev '(linux-vdso|ld-linux-x86-64|lib(pthread|dl|rt|stdc\+\+|gcc_s|c|m))\.so'; then
|
|
|
|
bad=1
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo -e "\n\n\n\n\e[31;1mDon't know how to check linked libs on $DRONE_STAGE_OS\e[0m\n\n\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$bad" ]; then
|
2020-05-23 03:36:30 +00:00
|
|
|
echo -e "\n\n\n\n\e[31;1mlokinet links to unexpected libraries\e[0m\n\n\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo -e "\n\n\n\n\e[32;1mNo unexpected linked libraries found\e[0m\n\n\n"
|