Add JenkinsFile

This commit is contained in:
vato007
2020-07-12 04:28:52 +00:00
parent d2d5dd6ede
commit 48e46b1e12

16
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,16 @@
pipeline {
agent {
docker {
image 'vato.ddns.net:8083/swift-5.2.4'
}
}
stages {
stage('') {
steps {
sh 'swift build'
}
}
}
}