From 140d8ab82ccc5b087f8f93a6f4313f1cc161e638 Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Thu, 16 Dec 2021 00:23:48 +0100 Subject: [PATCH] newapkbuild: do not run cargo test with --release It takes a longer time to compile and, most importantly, it may cause unnecessary rebuild of everything in the package phase (installation). --- newapkbuild.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newapkbuild.in b/newapkbuild.in index 0182ad2..9e8643d 100644 --- a/newapkbuild.in +++ b/newapkbuild.in @@ -156,7 +156,7 @@ __EOF__ check_rust() { cat >>APKBUILD<<__EOF__ - cargo test --frozen --release + cargo test --frozen __EOF__ }