aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorPaul Spooren <mail@aparcar.org>2020-09-17 18:55:00 -1000
committerPaul Spooren <mail@aparcar.org>2020-09-17 22:19:49 -1000
commit4f4207be0c940eb4adadb52988edbf38deea39bc (patch)
tree5218bfdc1703d757aa1cd16e6b245cb1dde4678e /.github
parent64cf9fb779b052efb97b901d76ea818989638283 (diff)
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>
Diffstat (limited to '.github')
-rwxr-xr-x.github/workflows/entrypoint.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/entrypoint.sh b/.github/workflows/entrypoint.sh
index 21e9035d0..63ef09c27 100755
--- a/.github/workflows/entrypoint.sh
+++ b/.github/workflows/entrypoint.sh
@@ -6,8 +6,10 @@ opkg update
for PKG in /ci/*.ipk; do
tar -xzOf "$PKG" ./control.tar.gz | tar xzf - ./control
+ # package name including variant
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)"