re-add crash pipeline step
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
This commit is contained in:
parent
f660e9c827
commit
2fbcd250b6
56
Jenkinsfile
vendored
56
Jenkinsfile
vendored
@ -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'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -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++){
|
||||
|
||||
Loading…
Reference in New Issue
Block a user