8000 Feature/jenkins pipeline by fceller · Pull Request #2996 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Feature/jenkins pipeline #2996

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Aug 8, 2017
Prev Previous commit
Next Next commit
added fullParallel
  • Loading branch information
fceller committed Aug 6, 2017
commit afc0ac0328c4d79ddf0c2a689c2c840b5362bf9c
6 changes: 3 additions & 3 deletions Installation/Pipeline/Jenkinsfile.feature
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ def testCheck(edition, os, mode, engine) {
return false
}

if (restrictions && !("test-${mode}-${edition}-${engine}-${os}" in restrictions)) {
if (restrictions && ! restrictions.contains("test-${mode}-${edition}-${engine}-${os}")) {
return false
}

Expand Down Expand Up @@ -750,7 +750,7 @@ def testResilienceCheck(os, engine, foxx) {
return false
}

if (restrictions && !("test-resilience-${foxx}-${engine}-${os}" in restrictions)) {
if (restrictions && !restrictions.contains("test-resilience-${foxx}-${engine}-${os}")) {
return false
}

Expand Down Expand Up @@ -931,7 +931,7 @@ def buildStepCheck(edition, os, full) {
return false
}

if (restrictions && !("build-${edition}-${os}" in restrictions)) {
if (restrictions && !restrictions.contains("build-${edition}-${os}")) {
echo "no restriction"
return false
}
Expand Down
0