-
Notifications
You must be signed in to change notification settings - Fork 12
172 lines (136 loc) · 4.66 KB
/
clients-compatibility.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
name: Compatibility Test for Clients
on:
push:
branches:
- main
- compatibility
- test
- support_flightsql
pull_request:
branches: [ "main" ]
jobs:
test-mysql:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '16'
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install system packages
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: bats cpanminus libmysqlclient-dev dotnet-sdk-8.0 dotnet-runtime-8.0 php-mysql r-base-core
version: 1.1
- name: Install dependencies
run: |
go get .
pip3 install "sqlglot[rs]"
curl -LJO https://github.com/duckdb/duckdb/releases/download/v1.1.3/duckdb_cli-linux-amd64.zip
unzip duckdb_cli-linux-amd64.zip
chmod +x duckdb
sudo mv duckdb /usr/local/bin
cd compatibility/mysql/
curl -L -o ./java/mysql-connector-java-8.0.30.jar https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.30/mysql-connector-java-8.0.30.jar
npm install mysql
sudo cpanm --notest DBD::mysql
pip3 install mysql-connector-python
sudo gem install mysql2
# R is unstable on GitHub Actions, so we disable it for now
# sudo apt-get install -y libblas-dev
# sudo R -e "install.packages('RMySQL', repos='http://cran.r-project.org')"
- name: Build
run: go build -v
- name: Start MyDuck Server
run: |
./myduckserver &
sleep 5
- name: Run the Compatibility Test for MySQL Client
run: |
bats ./compatibility/mysql/test.bats
test-postgresql:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '16'
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install system packages
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: bats cpanminus libpq-dev postgresql-client dotnet-sdk-8.0 dotnet-runtime-8.0 r-base-core
version: 1.1
- name: Install dependencies
run: |
go get .
pip3 install "sqlglot[rs]"
curl -LJO https://github.com/duckdb/duckdb/releases/download/v1.1.3/duckdb_cli-linux-amd64.zip
unzip duckdb_cli-linux-amd64.zip
chmod +x duckdb
sudo mv duckdb /usr/local/bin
cd compatibility/pg/
curl -L -o ./java/postgresql-42.7.4.jar https://jdbc.postgresql.org/download/postgresql-42.7.4.jar
npm install pg
sudo cpanm --notest DBD::Pg
pip3 install "psycopg[binary]" pandas pyarrow polars
sudo apt-get install -y libblas-dev
sudo gem install pg
# R is unstable on GitHub Actions, so we disable it for now
# TODO: Speed up the installation of RPostgres
# sudo R -e "install.packages('RPostgres', repos='http://cran.r-project.org')"
- name: Build
run: go build -v
- name: Start MyDuck Server
run: |
./myduckserver &
sleep 5
- name: Run the Compatibility Test for PostgreSQL Client
run: |
bats ./compatibility/pg/test.bats
- name: Run the Compatibility Test for Python Data Tools
run: |
bats ./compatibility/pg-pytools/test.bats
test-flightsql:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install dependencies
run: |
go get .
pip3 install "sqlglot[rs]"
pip3 install "psycopg[binary]" pandas pyarrow polars adbc_driver_flightsql
- name: Build
run: go build -v
- name: Start MyDuck Server
run: |
./myduckserver &
sleep 5
- name: Run the Compatibility Test for FlightSQL
run: |
go test -v ./compatibility/flightsql/go/flightsql_test.go
python3 -m unittest discover ./compatibility/flightsql/python -p "flightsql_test.py"