This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch ISIS-3224 in repository https://gitbox.apache.org/repos/asf/isis.git
commit 718e68913c8e96b53aee0739143c20d16ce7e4c0 Author: Dan Haywood <[email protected]> AuthorDate: Mon Sep 26 23:54:28 2022 +0100 ISIS-2965: fixes verify-isis-release.sh script (cherry picked from commit ba2b58bbcd53c532b4781818770bd843add3e71e) --- scripts/verify-isis-release.sh | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/scripts/verify-isis-release.sh b/scripts/verify-isis-release.sh index 8137762c6a..7e11e98217 100755 --- a/scripts/verify-isis-release.sh +++ b/scripts/verify-isis-release.sh @@ -91,16 +91,11 @@ _build(){ rm -rf ~/.m2/repository/org/apache/isis echo 'Building' - - # 2.0.0-M8-RC1 verification build hotfix - pushd isis*/supplemental-model - _execmustpass mvn clean install -Dskip.git -Preleased,-all - popd - + # previously there were multiple directories, now just the one. - pushd isis*/bom - _execmustpass mvn clean install -Dskip.git -Preleased,-all - popd + pushd isis*/bom + _execmustpass mvn clean install -DskipTests -T1C -Dgithub + popd } _download_app(){
