Skip to content

Commit c319b82

Browse files
committed
Merge branch 'master' into 6-0-dev
2 parents bf473c4 + aaa40c5 commit c319b82

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

.travis.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ script:
1515
- docker-compose run ci
1616
matrix:
1717
include:
18-
- name: 2.5.5
19-
env: TARGET_VERSION=2.5.5
20-
- name: 2.6.3
21-
env: TARGET_VERSION=2.6.3
18+
- name: 2.5.8
19+
env: TARGET_VERSION=2.5.8
20+
- name: 2.6.6
21+
env: TARGET_VERSION=2.6.6
22+
- name: 2.7.1
23+
env: TARGET_VERSION=2.7.1

Dockerfile renamed to Dockerfile.ci

Lines changed: 1 addition & 1 deletion
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

Lines changed: 7 additions & 5 deletions
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)