diff mbox series

[1/1] ci: Run all tests

Message ID 20210501185351.67197-2-toertel@gmail.com
State Accepted
Headers show
Series ci: Run all available tests | expand

Commit Message

Mark Jonas May 1, 2021, 6:53 p.m. UTC
Makefile target 'tests' buils and runs 'acceptance-tests' and 'test'.

The acceptance-tests additionally require cpio and wget.

Signed-off-by: Mark Jonas <toertel@gmail.com>
---
 ci/setup.sh        | 4 +++-
 ci/test-configs.sh | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/ci/setup.sh b/ci/setup.sh
index c681aa2..7a5d343 100755
--- a/ci/setup.sh
+++ b/ci/setup.sh
@@ -51,6 +51,8 @@  $_SUDO apt-get install -y \
     libwebsockets-dev \
     libgpiod-dev \
     libcurl4-openssl-dev \
-    gawk
+    gawk \
+    cpio \
+    wget
 
 $_SUDO ln -sf /usr/lib/x86_64-linux-gnu/pkgconfig/lua5.2.pc /usr/lib/x86_64-linux-gnu/pkgconfig/lua.pc
diff --git a/ci/test-configs.sh b/ci/test-configs.sh
index cdf51dc..0bbd46b 100755
--- a/ci/test-configs.sh
+++ b/ci/test-configs.sh
@@ -14,5 +14,5 @@  for i in configs/*; do
     echo "*** Testing config: $i"
     make "$(basename $i)"
     make -j8
-    make test
+    make tests
 done