Created
May 4, 2017 17:45
-
-
Save mikecole20/3744482ed11d4891cfbadc0b91c435a1 to your computer and use it in GitHub Desktop.
CircleCI for Vapor
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
machine: | |
xcode: | |
version: "8.3" | |
dependencies: | |
pre: | |
- brew install postgres | |
- brew install vapor/tap/vapor | |
- swift package fetch | |
cache_directories: | |
- "./.build" | |
compile: | |
override: | |
- vapor build | |
test: | |
override: | |
- set -o pipefail && | |
swift test 2>&1 | | |
tee $CIRCLE_ARTIFACTS/test.log | | |
xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/results.xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment