add ls step

This commit is contained in:
jakubknczny 2021-05-15 16:39:21 +02:00
parent dfc65c39e0
commit 8269e2e37b

View File

@ -17,6 +17,11 @@ pipeline {
dockerfile true dockerfile true
} }
stages { stages {
stage('ls') {
steps {
sh "ls -lah"
}
}
stage('archive artifact') { stage('archive artifact') {
steps { steps {
archiveArtifacts 'train.csv' archiveArtifacts 'train.csv'