Revert to before test Jenkinsfile

This commit is contained in:
Zofia Galla 2021-04-11 20:55:02 +02:00
parent 4b760ec23e
commit 6afa5af940

View File

@ -1,11 +1,21 @@
node {
docker.image('zollinka/ium:latest').withRun('-t') { c ->
docker.image('zollinka/ium:latest').inside {
stage('Test') {
sh 'cat /etc/issue'
sh 'ls -lah'
}
}
pipeline {
agent {docker { image 'zollinka/ium:latest' }}
stages {
stage('Sh script') {
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh 'chmod +x run.sh'
sh './run.sh > netflix_stats.txt'
}
}
}
stage('Archive artifacts') {
steps{
archiveArtifacts artifacts: 'netflix_stats.txt'
}
}
}
sh 'docker logs ${c.id}'
}