XcodeGen/.circleci/config.yml
2019-03-27 19:00:20 +11:00

31 lines
659 B
YAML

version: 2
jobs:
macOS_swift_5.0:
macos:
xcode: "10.2.0"
steps:
- checkout
- run:
name: Build
command: swift build
- run:
name: Test
command: swift test 2>&1 | xcpretty
- run:
name: Generate Fixtures
command: scripts/gen-fixtures.sh
- run:
name: Check Fixture Diffs
command: scripts/diff-fixtures.sh
- run:
name: Build Fixtures
command: scripts/build-fixtures.sh
- run:
name: Build release
command: make build
workflows:
version: 2
workflow:
jobs:
- macOS_swift_5.0