fix(CE): fix gem (#250) #211
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 - Integrations | |
on: | |
push: | |
paths: | |
- "integrations/**" | |
env: | |
CI: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: [3.2.0] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby ${{ matrix.ruby-version }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
- 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: Install dependencies | |
run: | | |
gem install bundler | |
bundle install --jobs 4 --retry 3 | |
working-directory: ./integrations | |
- name: Run tests with code coverage | |
run: COVERAGE=true bundle exec rspec | |
working-directory: ./integrations | |
- name: Install Code Climate Test Reporter | |
run: | | |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter | |
chmod +x ./cc-test-reporter | |
working-directory: ./integrations | |
- name: Push coverage data to Code Climate | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID_INTEGRATIONS }} | |
run: | | |
./cc-test-reporter before-build | |
./cc-test-reporter after-build --exit-code $? | |
working-directory: ./integrations |