re-add crash pipeline step
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit

This commit is contained in:
austin 2024-09-01 20:03:51 -04:00
parent f660e9c827
commit 2fbcd250b6
2 changed files with 29 additions and 29 deletions

56
Jenkinsfile vendored
View File

@ -59,33 +59,33 @@ pipeline {
}
}
}
// stage('DebugTests') {
// when {
// expression {
// !fileExists('./testsuccess')
// }
// }
// steps {
// wrap(
// [
// $class: 'Xvfb',
// additionalOptions: '',
// assignedLabels: '',
// autoDisplayName: true,
// debug: true,
// displayNameOffset: 0,
// installationName: 'Default',
// parallelBuild: true,
// screen: '1920x1080x24',
// timeout: 25
// ]
// ) {
// 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 integrationDebug -DmaxLogs'
// }
// }
// }
// }
stage('DebugTests') {
when {
expression {
!fileExists('./testsuccess')
}
}
steps {
wrap(
[
$class: 'Xvfb',
additionalOptions: '',
assignedLabels: '',
autoDisplayName: true,
debug: true,
displayNameOffset: 0,
installationName: 'Default',
parallelBuild: true,
screen: '1920x1080x24',
timeout: 25
]
) {
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 clean test -P integrationDebug -DmaxLogs'
}
}
}
}
}
}

View File

@ -122,7 +122,7 @@ public class OctreeTests {
/**
* Adds a whole bunch of nodes in a line
*/
@Test
@BigDataTest
public void testAddLine(){
Octree<Integer> octree = new Octree<Integer>(new Vector3d(0,0,0), new Vector3d(32,32,32));
for(int i = 0; i < 31; i++){