ium_470607/lab2/Jenkinsfile_dataset_stats
2021-04-11 13:05:17 +02:00

24 lines
489 B
Plaintext

pipeline {
agent {
docker {
image 'kubakonieczny/ium:v1.0'
}
}
stages {
stage('docker') {
steps {
sh '''
cat /etc/issue
ls -lah
python3 lab3/python_script.py >> stats.txt
'''
}
}
stage('archive artifacts') {
steps {
archiveArtifacts 'stats.txt'
}
}
}
}