Skip to content

Commit

Permalink
[ci] regression test - skip patching/building spring
Browse files Browse the repository at this point in the history
The regression tester now does not anymore
execute a "git reset"... and the patched
files stay in place in the github actions cache.
  • Loading branch information
adangel committed May 13, 2022
1 parent dc512e8 commit 9d23d79
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .ci/files/project-list.xml
Expand Up @@ -40,6 +40,11 @@ mvn dependency:build-classpath -DincludeScope=test -Dmdep.outputFile=classpath.t
<exclude-pattern>.*/build/generated-sources/.*</exclude-pattern>

<build-command><![CDATA[#!/usr/bin/env bash
## Skip gradle execution
if test -e classpath.txt; then
exit
fi
set -e
# Make sure to use java11. This is already installed by build.sh
Expand Down Expand Up @@ -129,11 +134,6 @@ index 6021fa574d..15d29ed699 100644
EOF
) | patch --strip=1
## Skip gradle execution
if test -e classpath.txt; then
exit
fi
./gradlew --console=plain --build-cache --no-daemon --max-workers=4 build testClasses -x test -x javadoc -x api -x asciidoctor -x asciidoctorPdf
./gradlew --console=plain --build-cache --no-daemon --max-workers=4 createSquishClasspath -q > classpath.txt
]]></build-command>
Expand Down

0 comments on commit 9d23d79

Please sign in to comment.