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

chore: move slt runner into main binary #2401

Merged
merged 21 commits into from
Jan 13, 2024
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ jobs:
PROTOC=`just protoc && just --evaluate PROTOC` ./scripts/protocol-test.sh

- name: pg protocol tests (slt runner)
run: just slt-bin -v 'pgproto/*'
run: just slt-bin 'pgproto/*'

sql-logic-tests:
name: SQL Logic Tests
Expand All @@ -227,15 +227,15 @@ jobs:
if [[ "${{ matrix.protocol }}" == "rpc" ]]; then
just rpc-tests
else
just slt-bin -v --protocol=${{ matrix.protocol }} 'sqllogictests/*'
just slt-bin --protocol=${{ matrix.protocol }} 'sqllogictests/*'
universalmind303 marked this conversation as resolved.
Show resolved Hide resolved
fi
- name: public sql logic tests
if: ${{ env.ACTIONS_STEP_DEBUG != 'true' }}
run: |
if [[ "${{ matrix.protocol }}" == "rpc" ]]; then
just rpc-tests
else
just slt-bin -v --protocol=${{ matrix.protocol }} 'sqllogictests/*'
just slt-bin --protocol=${{ matrix.protocol }} 'sqllogictests/*'
fi

process-integration-tests:
Expand Down
Loading