Fix swift version in Jenkinsfile

This commit is contained in:
Piv
2020-07-18 15:55:40 +09:30
parent 48e46b1e12
commit f9f0168c81

30
Jenkinsfile vendored
View File

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