Skip to content

Commit

Permalink
Merge branch 'main' into fix_multiple_primary_keys
Browse files Browse the repository at this point in the history
  • Loading branch information
elefeint committed Feb 12, 2024
2 parents 6b82b1e + 0c2af0a commit fcc0b70
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
35 changes: 35 additions & 0 deletions .github/workflows/integration_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Integration Tests

on:
pull_request:
push:
branches: [main]

jobs:
build_and_test:
name: Build and test the connector
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/cache@v3
id: cache-deps
with:
key: fivetran-deps-${{ hashFiles('./Makefile') }}
path: ./install

- name: build the dependencies
if: ${{ steps.cache-deps.outputs.cache-hit != 'true' }}
run: |
make build_openssl_native build_grpc build_arrow build_test_dependencies
- name: build the connector
run: |
make get_fivetran_protos get_duckdb
make build_connector
- name: run tests
env:
motherduck_token: ${{ secrets.CI_TESTING_TOKEN }}
run: |
./build/Release/integration_tests
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,3 @@ To upgrade, change `DUCKDB_VERSION` in [Makefile](Makefile) and re-run `make get
- support GZIP compression
- implement truncate-before (utc_delete_before) and synced_column = 4;
- implement soft delete?
- can files be unencrypted but still compressed?

0 comments on commit fcc0b70

Please sign in to comment.