Add jenkinsfile

This commit is contained in:
zontreck 2024-08-30 20:37:25 -07:00
parent 0eeb415033
commit 81a1b27250

23
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,23 @@
pipeline {
agent any
stages {
stage("Build on Linux") {
agent {
label 'linux'
}
steps {
sh '''
#!/bin/bash
'''
}
post {
always {
deleteDir()
}
}
}
}
}