Skip to content
Snippets Groups Projects
Commit e60bbf4d authored by Lars Bilke's avatar Lars Bilke Committed by Lars Bilke
Browse files

[Jenkins] Removed this parameter on linux.build.

parent 2e92d855
No related branches found
No related tags found
No related merge requests found
......@@ -26,14 +26,14 @@ node('docker') {
}
try {
stage('Unit tests (Clang)') {
build.linux this, 'build', 'tests', 'UBSAN_OPTIONS=print_stacktrace=1 make -j $(nproc)'
build.linux 'build', 'tests', 'UBSAN_OPTIONS=print_stacktrace=1 make -j $(nproc)'
}
}
catch(err) { echo "Clang sanitizer for unit tests failed!" }
try {
stage('End-to-end tests (Clang)') {
build.linux this, 'build', 'ctest', 'UBSAN_OPTIONS=print_stacktrace=1 make -j $(nproc)'
build.linux 'build', 'ctest', 'UBSAN_OPTIONS=print_stacktrace=1 make -j $(nproc)'
}
}
catch(err) { echo "Clang sanitizer for end-to-end tests failed!" }
......
......@@ -16,7 +16,7 @@ image.inside() {
}
stage('Generate (Docs)') {
build.linux this, 'build', 'doc'
build.linux 'build', 'doc'
}
}
......
......@@ -15,11 +15,11 @@ stage('Configure (Linux-Docker-Dynamic)') {
}
stage('CLI (Linux-Docker-Dynamic)') {
build.linuxWithEnv(this, 'envinf1/cli.sh', 'build')
build.linuxWithEnv('envinf1/cli.sh', 'build')
}
stage('Test (Linux-Docker-Dynamic)') {
build.linuxWithEnv(this, 'envinf1/cli.sh', 'build', 'tests ctest')
build.linuxWithEnv('envinf1/cli.sh', 'build', 'tests ctest')
}
stage('Post (Linux-Docker-Dynamic)') {
......
......@@ -16,8 +16,8 @@ node('docker') {
image.pull()
image.inside(defaultDockerArgs) {
stage('Configure') { configure.linux 'build', "${defaultCMakeOptions}" }
stage('Build') { build.linux this, 'build' }
stage('Test') { build.linux this, 'build', 'tests ctest-large' }
stage('Build') { build.linux 'build' }
stage('Test') { build.linux 'build', 'tests ctest-large' }
}
stage('Post') {
......
......@@ -17,11 +17,11 @@ image.inside(defaultDockerArgs) {
}
stage('CLI (Linux-Docker)') {
build.linux this, 'build'
build.linux 'build'
}
stage('Test (Linux-Docker)') {
build.linux this, 'build', 'tests ctest'
build.linux 'build', 'tests ctest'
}
stage('Data Explorer (Linux-Docker)') {
......@@ -29,7 +29,7 @@ image.inside(defaultDockerArgs) {
'-DOGS_BUILD_CLI=OFF -DOGS_BUILD_GUI=ON -DOGS_BUILD_UTILS=ON ' +
'-DOGS_BUILD_TESTS=OFF -DOGS_BUILD_METIS=ON',
'Unix Makefiles', null, true
build.linux this, 'build'
build.linux 'build'
}
}
......
......@@ -16,11 +16,11 @@ stage('Configure (Mac)') {
}
stage('CLI (Mac)') {
build.linux this, 'build', null, 'ninja'
build.linux 'build', null, 'ninja'
}
stage('Test (Mac)') {
build.linux this, 'build', 'tests ctest', 'ninja'
build.linux 'build', 'tests ctest', 'ninja'
}
stage('Data Explorer (Mac)') {
......@@ -28,7 +28,7 @@ stage('Data Explorer (Mac)') {
'-DOGS_BUILD_GUI=ON -DOGS_BUILD_UTILS=ON -DOGS_BUILD_TESTS=OFF ' +
'-DOGS_BUILD_METIS=ON',
'Ninja', '', true
build.linux this, 'build', null, 'ninja'
build.linux 'build', null, 'ninja'
}
stage('Archive (Mac)') {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment