12 lines
167 B
Plaintext

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