Skip to content

Commit

Permalink
self hosted runner
Browse files Browse the repository at this point in the history
  • Loading branch information
ChuckHend committed Aug 26, 2024
1 parent df29cea commit 02d1f22
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/extension_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,10 @@ jobs:
test:
name: Run tests
needs: dependencies
runs-on: ubuntu-22.04
runs-on:
- self-hosted
- dind
- xlarge-16x16
services:
# Label used to access the service container
vector-serve:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/extension_upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ on:
jobs:
test:
name: Upgrade Test
runs-on: ubuntu-24.04
runs-on:
- self-hosted
- dind
- xlarge-16x16
services:
vector-serve:
image: quay.io/tembo/vector-serve:latest
Expand Down
2 changes: 1 addition & 1 deletion extension/tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@ async fn test_diskann_cosine() {
.await
.expect("failed to drop vectorscale extension");

let _executed = sqlx::query("CREATE EXTENSION EXISTS vectorscale;")
let _executed = sqlx::query("CREATE EXTENSION IF EXISTS vectorscale;")
.execute(&conn)
.await
.expect("failed to create vectorscale extension");
Expand Down

0 comments on commit 02d1f22

Please sign in to comment.