Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CI configuration for SQLite without pushdown #3381

Merged
merged 7 commits into from
Sep 20, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix names
  • Loading branch information
AlekSi committed Sep 20, 2023
commit 187350107bd5833015351a792a70664474f2cdf4
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:
integration:
name: >
Integration ${{ matrix.name }} ${{ matrix.shard_index }}/${{ matrix.shard_total }}
(no-pushdown=${{ matrix.disable_filter_pushdown || false }})
(pushdown=${{ !(matrix.disable_filter_pushdown || false) }})
runs-on:
group: paid
timeout-minutes: 20
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:

- name: >
Run ${{ matrix.name }} tests
(${{ matrix.shard_index }}/${{ matrix.shard_total }}, no-pushdown=${{ matrix.disable_filter_pushdown || false }})
(${{ matrix.shard_index }}/${{ matrix.shard_total }}, pushdown=${{ !(matrix.disable_filter_pushdown || false) }})
run: >
bin/task test-integration-${{ matrix.task }}
SHARD_INDEX=${{ matrix.shard_index }}
Expand Down