profile-based toggling of mem debug jar build
Some checks reported errors
studiorailgun/Renderer/pipeline/head Something is wrong with the build of this commit
Some checks reported errors
studiorailgun/Renderer/pipeline/head Something is wrong with the build of this commit
This commit is contained in:
parent
5a99fb387a
commit
3527d55be6
3
Jenkinsfile
vendored
3
Jenkinsfile
vendored
@ -81,7 +81,8 @@ pipeline {
|
|||||||
]
|
]
|
||||||
) {
|
) {
|
||||||
script {
|
script {
|
||||||
sh 'mvn test -P integration -DmaxLogs'
|
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'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
#maven.buildNumber.plugin properties file
|
#maven.buildNumber.plugin properties file
|
||||||
#Thu Aug 29 20:24:54 EDT 2024
|
#Thu Aug 29 21:35:28 EDT 2024
|
||||||
buildNumber=301
|
buildNumber=302
|
||||||
|
|||||||
18
pom.xml
18
pom.xml
@ -436,6 +436,24 @@
|
|||||||
</properties>
|
</properties>
|
||||||
</profile>
|
</profile>
|
||||||
|
|
||||||
|
<!-- INTEGRATION TESTING -->
|
||||||
|
<!-- To execute this profile, run a command like "mvn test -P lwjgl-natives-windows,integration" -->
|
||||||
|
<profile>
|
||||||
|
<id>integrationDebug</id>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<version>2.22.2</version>
|
||||||
|
<configuration>
|
||||||
|
<argLine>-javaagent:./lwjglx-debug-1.0.0.jar</argLine>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</profiles>
|
</profiles>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user