-
Notifications
You must be signed in to change notification settings - Fork 65
66 lines (56 loc) · 1.98 KB
/
integrations-main.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
name: Ruby - Integrations
on:
push:
branches:
- main
paths:
- "integrations/**"
pull_request:
paths:
- "integrations/**"
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- "3.2.0"
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Update package list
run: sudo apt update
- name: Download and Extract DuckDB ODBC driver
run: |
wget -O duckdb.zip https://github.com/duckdb/duckdb/releases/download/v1.0.0/libduckdb-linux-amd64.zip
unzip duckdb.zip -d libduckdb
sudo mv libduckdb/duckdb.* /usr/local/include
sudo mv libduckdb/libduckdb.so /usr/local/lib
sudo ldconfig /usr/local/lib
- name: Download and Install Oracle Instant Client
run: |
sudo apt-get install -y libaio1 alien
wget http://yum.oracle.com/repo/OracleLinux/OL7/oracle/instantclient/x86_64/getPackage/oracle-instantclient19.6-basic-19.6.0.0.0-1.x86_64.rpm
wget http://yum.oracle.com/repo/OracleLinux/OL7/oracle/instantclient/x86_64/getPackage/oracle-instantclient19.6-devel-19.6.0.0.0-1.x86_64.rpm
sudo alien -i --scripts oracle-instantclient*.rpm
rm -f oracle-instantclient*.rpm
- name: Install FreeTDS for TinyTDS gem
run: |
sudo apt-get install libc6-dev
wget http://www.freetds.org/files/stable/freetds-1.4.10.tar.gz
tar -xzf freetds-1.4.10.tar.gz
cd freetds-1.4.10
./configure --prefix=/usr/local --with-tdsver=7.4
sudo make
sudo make install
- name: Install dependencies
run: bundle install
working-directory: ./integrations
- name: Run the default task
run: bundle exec rake
working-directory: ./integrations