Skip to content

Commit ca935cb

Browse files
authored
Update circle.yml
1 parent 56b0685 commit ca935cb

File tree

1 file changed

+10
-24
lines changed

1 file changed

+10
-24
lines changed

circle.yml

Lines changed: 10 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,28 @@
11
version: 2
22

33
jobs:
4-
5-
6-
74
macos:
85
macos:
96
xcode: "9.2"
107
steps:
118
- checkout
129
- run: swift build
1310
- run: swift test
14-
15-
16-
17-
1811
linux:
1912
docker:
2013
- image: codevapor/swift:4.1
2114
- image: circleci/postgres:latest
15+
name: cleartext
2216
environment:
2317
POSTGRES_USER: vapor_username
2418
POSTGRES_DB: vapor_database
25-
steps:
26-
- checkout
27-
- run:
28-
name: Compile code
29-
command: swift build
30-
- run:
31-
name: Run unit tests
32-
command: swift test
33-
34-
35-
19+
POSTGRES_PASSWORD: vapor_password
20+
- image: scenecheck/postgres-ssl:latest
21+
name: tls
22+
environment:
23+
POSTGRES_USER: vapor_username
24+
POSTGRES_DB: vapor_database
25+
POSTGRES_PASSWORD: vapor_password
3626
linux-release:
3727
docker:
3828
- image: codevapor/swift:4.1
@@ -41,26 +31,22 @@ jobs:
4131
- run:
4232
name: Compile code with optimizations
4333
command: swift build -c release
44-
45-
4634
workflows:
4735
version: 2
4836
tests:
4937
jobs:
5038
- linux
5139
- linux-release
5240
# - macos
53-
5441
nightly:
5542
triggers:
5643
- schedule:
5744
cron: "0 0 * * *"
5845
filters:
5946
branches:
6047
only:
61-
- master
62-
48+
- master
6349
jobs:
6450
- linux
6551
# - macos
66-
52+

0 commit comments

Comments
 (0)