16 rader
381 B
Groovy
16 rader
381 B
Groovy
pipeline {
|
|
agent none
|
|
stages {
|
|
stage('Build') {
|
|
agent {
|
|
docker {
|
|
image 'python:2-alpine'
|
|
}
|
|
}
|
|
steps {
|
|
sh 'python -m py_compile sources/helloworld.py'
|
|
stash(name: 'compiled-results', includes: 'sources/*.py*')
|
|
}
|
|
}
|
|
}
|
|
}
|