Skip to content

Commit ba4dfc9

Browse files
committedApr 24, 2020
Update test matrix
1 parent 4391586 commit ba4dfc9

File tree

3 files changed

+16
-12
lines changed

3 files changed

+16
-12
lines changed
 

‎.travis.yml

+8-6
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ matrix:
1717
include:
1818
- name: 2.3.8
1919
env: TARGET_VERSION=2.3.8
20-
- name: 2.4.6
21-
env: TARGET_VERSION=2.4.6
22-
- name: 2.5.5
23-
env: TARGET_VERSION=2.5.5
24-
- name: 2.6.3
25-
env: TARGET_VERSION=2.6.3
20+
- name: 2.4.10
21+
env: TARGET_VERSION=2.4.10
22+
- name: 2.5.8
23+
env: TARGET_VERSION=2.5.8
24+
- name: 2.6.6
25+
env: TARGET_VERSION=2.6.6
26+
- name: 2.7.1
27+
env: TARGET_VERSION=2.7.1

‎Dockerfile ‎Dockerfile.ci

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG TARGET_VERSION=2.6.3
22

3-
FROM wpolicarpo/activerecord-sqlserver-adapter:${TARGET_VERSION}
3+
FROM railssqlserver/activerecord-sqlserver-adapter:${TARGET_VERSION}
44

55
ENV WORKDIR /activerecord-sqlserver-adapter
66

‎docker-compose.ci.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
version: "2.2"
22
services:
3-
database:
3+
sqlserver:
44
image: metaskills/mssql-server-linux-rails
55
ci:
66
environment:
7-
- ACTIVERECORD_UNITTEST_HOST=database
8-
build: .
9-
command: wait-for database:1433 -- bundle exec rake test
7+
- ACTIVERECORD_UNITTEST_HOST=sqlserver
8+
build:
9+
context: .
10+
dockerfile: Dockerfile.ci
11+
command: wait-for sqlserver:1433 -- bundle exec rake test
1012
depends_on:
11-
- "database"
13+
- "sqlserver"

0 commit comments

Comments
 (0)
Please sign in to comment.