forked from rails-sqlserver/activerecord-sqlserver-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
36 lines (32 loc) · 744 Bytes
/
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
general:
branches:
ignore:
- /dev.*/
machine:
environment:
PATH: /opt/local/bin:${PATH}
TINYTDS_VERSION: 2.1.0
ACTIVERECORD_UNITTEST_HOST: localhost
ACTIVERECORD_UNITTEST_DATASERVER: localhost
services:
- docker
dependencies:
override:
- sudo ./test/bin/install-openssl.sh
- openssl version
- sudo ./test/bin/install-freetds.sh
- tsql -C
- rvm-exec 2.2.5 bundle install
- rvm-exec 2.3.1 bundle install
- rvm-exec 2.4.0 bundle install
database:
override:
- echo "Hello"
post:
- docker info
- ./test/bin/setup.sh
test:
override:
- rvm-exec 2.2.5 bundle exec rake test
- rvm-exec 2.3.1 bundle exec rake test
- rvm-exec 2.4.0 bundle exec rake test