16 lines
346 B
Groovy
16 lines
346 B
Groovy
pipeline {
|
|
agent none
|
|
stages {
|
|
stage('Build') {
|
|
agent {
|
|
docker {
|
|
image 'python:2-alpine'
|
|
}
|
|
}
|
|
steps {
|
|
sh 'make clean'
|
|
// stash(name: 'compiled-results', includes: 'sources/*.py*')
|
|
}
|
|
}
|
|
}
|
|
} |