ium_495716/Jenkinsfile

12 lines
141 B
Plaintext
Raw Normal View History

2024-03-20 14:48:24 +01:00
pipeline {
agent any
stages {
stage('Checkout') {
2024-03-20 14:58:28 +01:00
steps {
checkout scm
sh 'ls -las'
}
2024-03-20 14:48:24 +01:00
}
}
}