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') { stage('DebugTests') {
// when { when {
// expression { expression {
// !fileExists('./testsuccess') !fileExists('./testsuccess')
// } }
// } }
// steps { steps {
// wrap( wrap(
// [ [
// $class: 'Xvfb', $class: 'Xvfb',
// additionalOptions: '', additionalOptions: '',
// assignedLabels: '', assignedLabels: '',
// autoDisplayName: true, autoDisplayName: true,
// debug: true, debug: true,
// displayNameOffset: 0, displayNameOffset: 0,
// installationName: 'Default', installationName: 'Default',
// parallelBuild: true, parallelBuild: true,
// screen: '1920x1080x24', screen: '1920x1080x24',
// timeout: 25 timeout: 25
// ] ]
// ) { ) {
// 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 integrationDebug -DmaxLogs' 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 * Adds a whole bunch of nodes in a line
*/ */
@Test @BigDataTest
public void testAddLine(){ public void testAddLine(){
Octree<Integer> octree = new Octree<Integer>(new Vector3d(0,0,0), new Vector3d(32,32,32)); Octree<Integer> octree = new Octree<Integer>(new Vector3d(0,0,0), new Vector3d(32,32,32));
for(int i = 0; i < 31; i++){ for(int i = 0; i < 31; i++){