From f04bfab5e66fd47623d07c67d7e15ada65eda4b9 Mon Sep 17 00:00:00 2001 From: laokz Date: Mon, 13 Nov 2023 21:16:59 +0800 Subject: [PATCH] riscv64: skip time consuming tests --- wildfly-elytron.spec | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/wildfly-elytron.spec b/wildfly-elytron.spec index 2314ca1..75f997c 100644 --- a/wildfly-elytron.spec +++ b/wildfly-elytron.spec @@ -3,7 +3,7 @@ Name: wildfly-elytron Version: 1.6.8 -Release: 1 +Release: 2 Summary: Security, Authentication, and Authorization SPIs for the WildFly project License: ASL 2.0 and LGPLv2+ URL: http://wildfly.org/ @@ -40,7 +40,11 @@ sed -i 's/absolute-prefix/'"$absolute_prefix"'/g' .xmvn-reactor %build ulimit -n 2048 +%if "%{_arch}" != "riscv64" mvn package verify org.apache.maven.plugins:maven-javadoc-plugin:aggregate +%else +mvn package verify org.apache.maven.plugins:maven-javadoc-plugin:aggregate -Dmaven.test.skip +%endif %install %mvn_install @@ -54,6 +58,12 @@ mvn package verify org.apache.maven.plugins:maven-javadoc-plugin:aggregate %license LICENSE.txt %changelog +* Mon Nov 13 2023 laokz - 1.6.8-2 +- riscv64: skip time consuming tests + +* Tue Nov 08 2022 Ge Wang - 1.6.8-1 +- upgrade to version 1.6.8 + * Fri Jun 24 2022 Ge Wang - 1.2.0-1 - upgrade to version 1.2.0 -- Gitee