mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 15:38:40 +01:00
CI: pass only VERSION to test.sh
Currently the passed VERSION includes the release, which is usually not part of the compiled binary. Removing it simplifies the `grep` command to check for correct package output during runtime tests. Signed-off-by: Paul Spooren <mail@aparcar.org>
This commit is contained in:
@@ -6,8 +6,10 @@ opkg update
|
|||||||
|
|
||||||
for PKG in /ci/*.ipk; do
|
for PKG in /ci/*.ipk; do
|
||||||
tar -xzOf "$PKG" ./control.tar.gz | tar xzf - ./control
|
tar -xzOf "$PKG" ./control.tar.gz | tar xzf - ./control
|
||||||
|
# package name including variant
|
||||||
PKG_NAME=$(sed -ne 's#^Package: \(.*\)$#\1#p' ./control)
|
PKG_NAME=$(sed -ne 's#^Package: \(.*\)$#\1#p' ./control)
|
||||||
PKG_VERSION=$(sed -ne 's#^Version: \(.*\)$#\1#p' ./control)
|
# package version without release
|
||||||
|
PKG_VERSION=$(sed -ne 's#^Version: \(.*\)-[0-9]*$#\1#p' ./control)
|
||||||
|
|
||||||
echo "Testing package $PKG_NAME ($PKG_VERSION)"
|
echo "Testing package $PKG_NAME ($PKG_VERSION)"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user