SimpleHelperTools/Jenkinsfile

23 lines
369 B
Text
Raw Normal View History

2024-08-30 20:37:25 -07:00
pipeline {
agent any
stages {
stage("Build on Linux") {
agent {
label 'linux'
}
steps {
sh '''
#!/bin/bash
'''
}
post {
always {
deleteDir()
}
}
}
}
}