ium_495716/Jenkinsfile

12 lines
147 B
Plaintext
Raw Normal View History

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