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') {
|
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'
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -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++){
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user