forked from vapor/open-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.yml
59 lines (57 loc) · 1.31 KB
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
version: 2
jobs:
macos:
macos:
xcode: "10.2.0"
steps:
- checkout
- run: HOMEBREW_NO_AUTO_UPDATE=1 brew install [email protected]
- run: swift build
- run: swift test
macos-release:
macos:
xcode: "10.2.0"
steps:
- checkout
- run: HOMEBREW_NO_AUTO_UPDATE=1 brew install [email protected]
- run: swift build -c release
bionic:
docker:
- image: swift:5.0-bionic
steps:
- checkout
- run: apt-get -y install openssl libssl-dev
- run: swift build --disable-index-store
- run: swift test --disable-index-store
bionic-release:
docker:
- image: swift:5.0-bionic
steps:
- checkout
- run: apt-get -y install openssl libssl-dev
- run: swift build -c release
xenial:
docker:
- image: swift:5.0-xenial
steps:
- checkout
- run: apt-get -y install openssl libssl-dev
- run: swift build --disable-index-store
- run: swift test --disable-index-store
xenial-release:
docker:
- image: swift:5.0-xenial
steps:
- checkout
- run: apt-get -y install openssl libssl-dev
- run: swift build -c release
workflows:
version: 2
tests:
jobs:
- macos
- macos-release
- bionic
- bionic-release
- xenial
- xenial-release