This repository has been archived by the owner on Jan 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
/
.travis.yml
108 lines (92 loc) · 2.33 KB
/
.travis.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
language: go
go_import_path: github.com/src-d/go-mysql-server
env:
global:
- LD_LIBRARY_PATH="/usr/local/lib":${LD_LIBRARY_PATH}
- GO111MODULE=on
- GOPROXY=https://proxy.golang.org
addons:
apt:
packages:
- libmysqlclient-dev
matrix:
fast_finish: true
before_script:
- sudo service mysql stop
script:
- make ci-script
jobs:
include:
- go: 1.11.x
name: 'Unit tests Go 1.11'
- go: 1.12.x
name: 'Unit tests Go 1.12'
# Integration test builds for 3rd party clients
- go: 1.12.x
name: 'Integration test go'
script:
- make TEST=go integration
- language: python
python: '3.6'
before_install:
- eval "$(gimme 1.12.4)"
name: 'Integration test python-pymysql'
script:
- make TEST=python-pymysql integration
- language: python
python: '3.6'
before_install:
- eval "$(gimme 1.12.4)"
name: 'Integration test python-mysql'
script:
- make TEST=python-mysql integration
- language: python
python: '3.6'
before_install:
- eval "$(gimme 1.12.4)"
name: 'Integration test python-sqlalchemy'
script:
- make TEST=python-sqlalchemy integration
- language: php
php: '7.1'
before_install:
- eval "$(gimme 1.12.4)"
name: 'Integration test php'
script:
- make TEST=php integration
- language: ruby
ruby: '2.3'
before_install:
- eval "$(gimme 1.12.4)"
name: 'Integration test ruby'
script:
- make TEST=ruby integration
- language: java
jdk: openjdk8
before_install:
- eval "$(gimme 1.12.4)"
name: 'Integration test jdbc-mariadb'
script:
- make TEST=jdbc-mariadb integration
- language: node_js
node_js: '12'
before_install:
- eval "$(gimme 1.12.4)"
name: 'Integration test javascript'
script:
- make TEST=javascript integration
- language: csharp
mono: none
dotnet: '2.1'
before_install:
- eval "$(gimme 1.12.4)"
name: 'Integration test dotnet'
script:
- make TEST=dotnet integration
- language: c
compiler: clang
before_install:
- eval "$(gimme 1.12.4)"
name: 'Integration test c'
script:
- make TEST=c integration