From d47f67f9933bcb49488971cc9acd8e069fe0b616 Mon Sep 17 00:00:00 2001 From: Coleman McFarland Date: Tue, 31 Dec 2024 19:58:13 -0500 Subject: [PATCH] Add prove6 invocation to bin/test-script.sh This is an unoptimized "do everything" script, but it is enough to get CI started. --- bin/test-script.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/bin/test-script.sh b/bin/test-script.sh index dabde60..6bac5ec 100644 --- a/bin/test-script.sh +++ b/bin/test-script.sh @@ -10,11 +10,17 @@ # podman run -v $PWD:/src -w /src docker.io/rakudo-star:latest sh ./bin/test-script.sh # set -e +echo "Installing system dependencies." apt-get update -y apt-get install -y build-essential +echo "Installing Raku library dependencies." zef install --deps-only . - zef install -/precompile-install . +# prove6 is pre-installed in the open source rakudo-star image +echo "Running tests with prove6." +prove6 xt/* + +echo "Done."