Skip to content

Commit

Permalink
[Jenkins] Cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
bilke committed Jul 16, 2019
1 parent 46b58e8 commit 59eea92
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions Jenkinsfile
@@ -1,7 +1,7 @@
#!/usr/bin/env groovy
@Library('jenkins-pipeline@1.0.22') _

def stage_required = [build: false, data: false, full: false, docker: false]
def stage_required = [build: false, full: false]
def build_shared = 'ON'

pipeline {
Expand Down Expand Up @@ -69,14 +69,6 @@ pipeline {
stage_required.build = true
echo "Doing regular build."
}
if (path.startsWith("Tests/Data") && !stage_required.data) {
stage_required.data = true
echo "Updating Tests/Data."
}
if (path.startsWith("scripts/docker") && !stage_required.docker) {
stage_required.docker = true
echo "Doing Docker images build."
}
}
}
}
Expand Down

0 comments on commit 59eea92

Please sign in to comment.