only run integration on integrationDebug test
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit

This commit is contained in:
austin 2024-08-29 22:11:45 -04:00
parent 62f9e7a55a
commit bd41085afa
2 changed files with 8 additions and 4 deletions

2
Jenkinsfile vendored
View File

@ -82,7 +82,7 @@ pipeline {
) {
script {
sh 'curl https://build.lwjgl.org/addons/lwjglx-debug/lwjglx-debug-1.0.0.jar -v -L > ./lwjglx-debug-1.0.0.jar'
sh 'mvn test -P integration,integrationDebug -DmaxLogs'
sh 'mvn test -P integrationDebug -DmaxLogs'
}
}
}

10
pom.xml
View File

@ -427,7 +427,7 @@
<!-- INTEGRATION TESTING -->
<!-- To execute this profile, run a command like "mvn test -P lwjgl-natives-windows,integration" -->
<!-- To execute this profile, run a command like "mvn test -P integration" -->
<profile>
<id>integration</id>
<properties>
@ -436,8 +436,8 @@
</properties>
</profile>
<!-- INTEGRATION TESTING -->
<!-- To execute this profile, run a command like "mvn test -P lwjgl-natives-windows,integration" -->
<!-- INTEGRATION TESTING DEBUG -->
<!-- To execute this profile, run a command like "mvn test -P integration,integrationDebug" -->
<profile>
<id>integrationDebug</id>
<build>
@ -452,6 +452,10 @@
</plugin>
</plugins>
</build>
<properties>
<!--The tests to run-->
<groups>integration</groups>
</properties>
</profile>