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 {
|
pipeline {
|
||||||
agent any
|
agent {
|
||||||
|
docker { image 'shroomy/ium:1' }
|
||||||
|
}
|
||||||
parameters {
|
parameters {
|
||||||
buildSelector(defaultSelector:
|
buildSelector(defaultSelector:
|
||||||
lastSuccessful(),
|
lastSuccessful(),
|
||||||
@ -7,6 +9,11 @@ pipeline {
|
|||||||
name: 'BUILD_SELECTOR')
|
name: 'BUILD_SELECTOR')
|
||||||
}
|
}
|
||||||
stages {
|
stages {
|
||||||
|
stage('Test') {
|
||||||
|
steps {
|
||||||
|
sh 'cat /etc/issue'
|
||||||
|
}
|
||||||
|
}
|
||||||
stage("copyArtifacts"){
|
stage("copyArtifacts"){
|
||||||
steps {
|
steps {
|
||||||
copyArtifacts fingerprintArtifacts: true,
|
copyArtifacts fingerprintArtifacts: true,
|
||||||
|
Loading…
Reference in New Issue
Block a user