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 { 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 '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 --> <!-- 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> <profile>
<id>integration</id> <id>integration</id>
<properties> <properties>
@ -436,8 +436,8 @@
</properties> </properties>
</profile> </profile>
<!-- INTEGRATION TESTING --> <!-- INTEGRATION TESTING DEBUG -->
<!-- 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,integrationDebug" -->
<profile> <profile>
<id>integrationDebug</id> <id>integrationDebug</id>
<build> <build>
@ -452,6 +452,10 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<properties>
<!--The tests to run-->
<groups>integration</groups>
</properties>
</profile> </profile>