Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
Merge pull request #6 from vapor/cci2
Browse files Browse the repository at this point in the history
Update CircleCI to 2.0
  • Loading branch information
vzsg authored Dec 22, 2017
2 parents 3ee4aca + c631a2b commit 1063956
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 16 deletions.
37 changes: 37 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
version: 2

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

linux-3:
docker:
- image: swift:3.1.1
steps:
- run: apt-get install -yq libssl-dev
- checkout
- run: swift build
- run: swift test

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

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

This file was deleted.

0 comments on commit 1063956

Please sign in to comment.