Created
February 13, 2022 22:28
-
-
Save majorsilence/b1c29ff8ed44315a3a94077944203742 to your computer and use it in GitHub Desktop.
Swift Jenkins Pipeline
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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