Skip to content

Commit

Permalink
Merge pull request #25 from vapor/ci-updates
Browse files Browse the repository at this point in the history
ci updates
  • Loading branch information
tanner0101 authored Oct 18, 2017
2 parents 7428b84 + 0d7faff commit 67e86ae
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 16 deletions.
40 changes: 40 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
version: 2

jobs:
macos:
macos:
xcode: "9.0"
steps:
- run: brew install vapor/tap/ctls
- checkout
- run: swift build
- run: swift build -c release
- run: swift test

linux-swift3:
docker:
- image: swift:3.1
steps:
- run: apt-get install -yq libssl-dev
- checkout
- run: swift build
- run: swift build -c release
- run: swift test

linux:
docker:
- image: swift:4.0
steps:
- run: apt-get install -yq libssl-dev
- checkout
- run: swift build
- run: swift build -c release
- run: swift test

workflows:
version: 2
tests:
jobs:
- macos
- linux-swift3
- linux
16 changes: 0 additions & 16 deletions circle.yml

This file was deleted.

0 comments on commit 67e86ae

Please sign in to comment.