11 lines
147 B
Plaintext
Raw Normal View History

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'cd scripts'
}
}
}
}