diff --git a/Jenkinsfile b/Jenkinsfile index cf79a50..e69a9a6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,7 @@ pipeline { - agent any + agent { + docker { image 'ubuntu:latest' } + } parameters { string( @@ -29,6 +31,11 @@ pipeline { } stages { + stage('Test') { + steps { + sh 'cat /etc/issue' + } + } stage('First') { steps { withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}","KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {