Skip to content

Instantly share code, notes, and snippets.

@majorsilence
Created February 13, 2022 22:28
Show Gist options
  • Save majorsilence/b1c29ff8ed44315a3a94077944203742 to your computer and use it in GitHub Desktop.
Save majorsilence/b1c29ff8ed44315a3a94077944203742 to your computer and use it in GitHub Desktop.
Swift Jenkins Pipeline
pipeline {
agent none
stages {
stage('build and test') {
agent {
docker {
image 'swift:5.5.3'
}
}
steps {
echo "building"
sh """
swift build
swift test
"""
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment