Dremio Stress JDBC support (#27) #94
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Workflow | |
on: [push] | |
jobs: | |
build-and-run: | |
services: | |
dind: | |
image: docker:dind-rootless | |
ports: | |
- 2375:2375 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21 | |
- name: Build, Setup | |
run: | | |
sudo apt -y install wget unixodbc unixodbc-dev odbcinst alien | |
wget https://download.dremio.com/arrow-flight-sql-odbc-driver/arrow-flight-sql-odbc-driver-LATEST.x86_64.rpm | |
sudo alien --scripts $(ls arrow-flight-sql-odbc-driver*) || true | |
sudo dpkg -i $(ls arrow-flight-sql-odbc-driver*) || true | |
- name: Verify build | |
run: ./script/build | |
- name: Run tests | |
run: ./script/test | |
- name: Run linting | |
run: ./script/lint | |