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

fix: Skip external SLTs for external contributors #2247

Merged
merged 17 commits into from
Dec 18, 2023
Merged
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ jobs:

- name: Python Bindings Tests
run: just python test

node-bindings-tests:
name: Node Binding Tests
runs-on: ubuntu-latest-8-cores
Expand All @@ -119,6 +120,7 @@ jobs:
run: just js build-debug
- name: Node Bindings Tests
run: just js test

pg-protocol:
name: PG Protocol Tests
runs-on: ubuntu-latest-8-cores
Expand Down Expand Up @@ -165,7 +167,7 @@ jobs:
run: just slt 'sqllogictests/*'

integration-tests:
if: github.repository_owner == 'glaredb'
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == 'GlareDB'
name: Integration Tests
runs-on: ubuntu-latest-8-cores
needs: ["build"]
Expand Down