ci: test L2TPNS version (Ref #11)
This commit is contained in:
parent
ab58da4056
commit
48e7ef75b7
2 changed files with 35 additions and 3 deletions
19
scripts/ci-test.sh
Normal file
19
scripts/ci-test.sh
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#!/usr/bin/env sh
|
||||
# https://code.ffdn.org/l2tpns/l2tpns/-/issues/11
|
||||
|
||||
set -x
|
||||
env
|
||||
pwd
|
||||
|
||||
apt update -qqy
|
||||
apt install -qqy build-essential libcli-dev git
|
||||
|
||||
make install
|
||||
/usr/sbin/l2tpns -v || true
|
||||
|
||||
curr_version=$(grep -oP 'L2TPNS version *\K\S+' /var/log/l2tpns)
|
||||
git_version=$(git describe --abbrev=0)
|
||||
if [ "$curr_version" != "$git_version" ]; then
|
||||
echo "ERROR: L2TPNS version ($curr_version) is different than latest GIT version ($git_version)"
|
||||
exit 1
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue