diff options
author | Olivier Lamy <olamy@apache.org> | 2022-04-21 20:01:07 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-21 20:01:07 +1000 |
commit | c057c3ef1deb0d299bd1ed2141ac9e4c49eb0619 (patch) | |
tree | b00a3236023e2e1710290903a5a3cd4a33d7352a | |
parent | e94d037281ca0b2f6bd06659d1c073b1f9e8d55b (diff) | |
download | archiva-c057c3ef1deb0d299bd1ed2141ac9e4c49eb0619.tar.gz archiva-c057c3ef1deb0d299bd1ed2141ac9e4c49eb0619.zip |
Fix github actions (#83)
* more memory for rest-services tests
Signed-off-by: Olivier Lamy <olamy@apache.org>
-rw-r--r-- | .github/workflows/maven.yml | 3 | ||||
-rw-r--r-- | archiva-modules/archiva-web/archiva-rest/archiva-rest-services/pom.xml | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index cbe068cd5..b011c4aa3 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -46,3 +46,6 @@ jobs: - name: Build with Maven run: mvn -e -B -V install -Pci-build -T2 + + - name: Publish Test Report + uses: scacap/action-surefire-report@v1 diff --git a/archiva-modules/archiva-web/archiva-rest/archiva-rest-services/pom.xml b/archiva-modules/archiva-web/archiva-rest/archiva-rest-services/pom.xml index c7391c6db..16f4d02bf 100644 --- a/archiva-modules/archiva-web/archiva-rest/archiva-rest-services/pom.xml +++ b/archiva-modules/archiva-web/archiva-rest/archiva-rest-services/pom.xml @@ -540,7 +540,7 @@ with surefire and OpenJDK 8 181b13 on Debian/Ubuntu, @see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=911925 --> - <argLine>-Xms256m -Xmx512m -server -Djdk.net.URLClassPath.disableClassPathURLCheck=true</argLine> + <argLine>-Xms2048m -Xmx2048m -server -Djdk.net.URLClassPath.disableClassPathURLCheck=true</argLine> <systemPropertyVariables> <mvn.project.base.dir>${project.basedir}</mvn.project.base.dir> <appserver.base>${project.build.directory}/appserver-base-${surefire.forkNumber}</appserver.base> |