SimpleHelperTools/Jenkinsfile
2024-08-30 20:37:25 -07:00

23 lines
No EOL
369 B
Groovy

pipeline {
agent any
stages {
stage("Build on Linux") {
agent {
label 'linux'
}
steps {
sh '''
#!/bin/bash
'''
}
post {
always {
deleteDir()
}
}
}
}
}