docker to Jenkinsfile in dataset-stats
This commit is contained in:
parent
1791d3b537
commit
a4ac127976
9
dataset_stats/Jenkinsfile
vendored
9
dataset_stats/Jenkinsfile
vendored
@ -1,5 +1,7 @@
|
||||
pipeline {
|
||||
agent any
|
||||
agent {
|
||||
docker { image 'shroomy/ium:1' }
|
||||
}
|
||||
parameters {
|
||||
buildSelector(defaultSelector:
|
||||
lastSuccessful(),
|
||||
@ -7,6 +9,11 @@ pipeline {
|
||||
name: 'BUILD_SELECTOR')
|
||||
}
|
||||
stages {
|
||||
stage('Test') {
|
||||
steps {
|
||||
sh 'cat /etc/issue'
|
||||
}
|
||||
}
|
||||
stage("copyArtifacts"){
|
||||
steps {
|
||||
copyArtifacts fingerprintArtifacts: true,
|
||||
|
Loading…
Reference in New Issue
Block a user