Commit 894c966f authored by Dominik Charousset's avatar Dominik Charousset Committed by Joseph Noir

Fix Groovy exception

parent 224713d2
...@@ -40,40 +40,40 @@ pipeline { ...@@ -40,40 +40,40 @@ pipeline {
} }
stage ('Build & Test') { stage ('Build & Test') {
parallel { parallel {
stage ('Linux && gcc4.8') { stage ('GCC 4.8') {
agent { label "${STAGE_NAME}" } agent { label 'Linux && gcc4.8' }
steps { unixBuild() } steps { unixBuild() }
} }
stage ('Linux && gcc4.9') { stage ('GCC 4.9') {
agent { label "${STAGE_NAME}" } agent { label 'Linux && gcc4.9' }
steps { unixBuild() } steps { unixBuild() }
} }
stage ('Linux && gcc5.1') { stage ('GCC 5') {
agent { label "${STAGE_NAME}" } agent { label 'Linux && gcc5.1' }
steps { unixBuild() } steps { unixBuild() }
} }
stage ('Linux && gcc6.3') { stage ('GCC 6') {
agent { label "${STAGE_NAME}" } agent { label 'Linux && gcc6.3' }
steps { unixBuild() } steps { unixBuild() }
} }
stage ('Linux && gcc7.2') { stage ('GCC 7') {
agent { label "${STAGE_NAME}" } agent { label 'Linux && gcc7.2' }
steps { unixBuild() } steps { unixBuild() }
} }
stage ('Linux && clang') { stage ('Clang on Linux') {
agent { label "${STAGE_NAME}" } agent { label 'Linux && clang' }
steps { unixBuild() } steps { unixBuild() }
} }
stage ('macOS && clang') { stage ('Clang on Mac') {
agent { label "${STAGE_NAME}" } agent { label 'macOS && clang' }
steps { unixBuild() } steps { unixBuild() }
} }
stage ('macOS && gcc') { stage ('GCC on Mac') {
agent { label "${STAGE_NAME}" } agent { label 'macOS && gcc' }
steps { unixBuild() } steps { unixBuild() }
} }
stage('Linux && LeakSanitizer') { stage('Leak Sanitizer') {
agent { label "${STAGE_NAME}" } agent { label 'Linux && LeakSanitizer' }
steps { unixBuild() } steps { unixBuild() }
} }
stage('Logging') { stage('Logging') {
...@@ -107,8 +107,8 @@ pipeline { ...@@ -107,8 +107,8 @@ pipeline {
} }
} }
} }
stage('msbuild') { stage('Windows (MSVC)') {
agent { label "${STAGE_NAME}" } agent { label "msbuild" }
environment { environment {
PATH = 'C:\\Windows\\System32;C:\\Program Files\\CMake\\bin;C:\\Program Files\\Git\\cmd;C:\\Program Files\\Git\\bin' PATH = 'C:\\Windows\\System32;C:\\Program Files\\CMake\\bin;C:\\Program Files\\Git\\cmd;C:\\Program Files\\Git\\bin'
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment