-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): run tests with an older glibc (#800)
* chore(ci): test docker images * try without dind * put checkout back where it was * dont duplicate executor names * install build-essential * install pkg-config * chore(ci): test rover's glibc version * wip: add glibc checker to tests * wip: only check glibc in CI * wip: add xenial image to matrix * try centos image * try centos:7 * chore(ci): use yum for centos packages * chore(ci): add -y to yum commands * chore(ci): fix up bad find and replace * chore(ci): install cmake for centos * chore(ci): install gcc instead of cmake * chore(ci): install openssl on centos * chore(ci): groupinstall dev tools centos * chore(ci): use ubuntu for lint * chore(ci): persist target directory for integration tests * chore(ci): persist correct directory * chore(ci): dont persist directory, it's slow * chore(ci): run unit tests and integration tests on ubuntu * chore(ci): run e2e tests in the same job
- Loading branch information
1 parent
dbbb84e
commit d97c60c
Showing
3 changed files
with
132 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
#!/bin/bash | ||
|
||
# This scripts checks if Rover's compiled executable only asks for | ||
# supported versions of glibc | ||
|
||
# source: https://gist.github.com/fasterthanlime/17e002a8f5e0f189861c | ||
|
||
# usage: ./check_glibc.sh ./target/debug/rover | ||
|
||
MAX_VER=2.18 | ||
|
||
SCRIPTPATH=$( cd $(dirname $0) ; pwd -P ) | ||
BINARY=$1 | ||
|
||
# Version comparison function in bash | ||
vercomp () { | ||
if [[ $1 == $2 ]] | ||
then | ||
return 0 | ||
fi | ||
local IFS=. | ||
local i ver1=($1) ver2=($2) | ||
# fill empty fields in ver1 with zeros | ||
for ((i=${#ver1[@]}; i<${#ver2[@]}; i++)) | ||
do | ||
ver1[i]=0 | ||
done | ||
for ((i=0; i<${#ver1[@]}; i++)) | ||
do | ||
if [[ -z ${ver2[i]} ]] | ||
then | ||
# fill empty fields in ver2 with zeros | ||
ver2[i]=0 | ||
fi | ||
if ((10#${ver1[i]} > 10#${ver2[i]})) | ||
then | ||
return 1 | ||
fi | ||
if ((10#${ver1[i]} < 10#${ver2[i]})) | ||
then | ||
return 2 | ||
fi | ||
done | ||
return 0 | ||
} | ||
|
||
IFS=" | ||
" | ||
VERS=$(objdump -T $BINARY | grep GLIBC | sed 's/.*GLIBC_\([.0-9]*\).*/\1/g' | sort -u) | ||
|
||
for VER in $VERS; do | ||
vercomp $VER $MAX_VER | ||
COMP=$? | ||
if [[ $COMP -eq 1 ]]; then | ||
echo "Error! ${BINARY} requests GLIBC ${VER}, which is higher than target ${MAX_VER}" | ||
echo "Affected symbols:" | ||
objdump -T $BINARY | grep GLIBC_${VER} | ||
echo "Looking for symbols in libraries..." | ||
for LIBRARY in $(ldd $BINARY | cut -d ' ' -f 3); do | ||
echo $LIBRARY | ||
objdump -T $LIBRARY | fgrep GLIBC_${VER} | ||
done | ||
exit 27 | ||
else | ||
echo "Found version ${VER}" | ||
fi | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters