From c4df134f53046985afac870449a7de92d0bb4176 Mon Sep 17 00:00:00 2001 From: Peter Tillemans Date: Sat, 25 May 2024 14:35:15 +0200 Subject: [PATCH] add test script --- test-pack | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 test-pack diff --git a/test-pack b/test-pack new file mode 100755 index 0000000..bf661f6 --- /dev/null +++ b/test-pack @@ -0,0 +1,17 @@ +#!/bin/sh + +make distclean +./bootstrap.sh +./configure GUILE=$(which guile) +make -j24 +make dist + +TARBALL=$(guix pack -R -Sbloatrunner=bin -L .guix/modules bloatrunner) + +cd /tmp/bloatrunner +chmod -R +w gnu +rm -rf /tmp/bloatrunner/* +tar -xf $TARBALL +bloatrunner/bloatrunner + +