forked from rails-sqlserver/activerecord-sqlserver-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
25 lines (25 loc) · 694 Bytes
/
.travis.yml
File metadata and controls
25 lines (25 loc) · 694 Bytes
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
sudo: required
cache: bundler
services:
- docker
env:
global:
- COMPOSE_FILE: docker-compose.ci.yml
before_install:
- sudo rm /usr/local/bin/docker-compose
- sudo curl -L "https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
- sudo chmod +x /usr/local/bin/docker-compose
install:
- docker-compose build --build-arg TARGET_VERSION=$TARGET_VERSION
script:
- docker-compose run ci
matrix:
include:
- name: 2.3.8
env: TARGET_VERSION=2.3.8
- name: 2.4.6
env: TARGET_VERSION=2.4.6
- name: 2.5.5
env: TARGET_VERSION=2.5.5
- name: 2.6.3
env: TARGET_VERSION=2.6.3