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

Test Self Hosted Runners #1202

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: CI

# Use runs on `ubuntu-latest-8-cores`. All of our self hosted runners use this tag.
# Use runs on `test-sh-runner`. All of our self hosted runners use this tag.
# Our runners pick up jobs first, and if all our runners are being used or are down
# it will automatically back up to using GitHub hosted runners.

Expand All @@ -12,7 +12,7 @@ on:

jobs:
test_rust:
runs-on: ubuntu-latest-8-cores
runs-on: test-sh-runner
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

test_unit:
runs-on: ubuntu-latest-8-cores
runs-on: test-sh-runner
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
npm run test:ts

test_python:
runs-on: ubuntu-latest-8-cores
runs-on: test-sh-runner
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -151,7 +151,7 @@ jobs:
npm run test

test_api:
runs-on: ubuntu-latest-8-cores
runs-on: test-sh-runner
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -165,7 +165,7 @@ jobs:
npm run docker:test:ci

lint_rust:
runs-on: ubuntu-latest-8-cores
runs-on: test-sh-runner
steps:
- uses: actions/checkout@v4
- name: Set up Rust
Expand All @@ -180,7 +180,7 @@ jobs:
cargo clippy -- -D warnings

lint:
runs-on: ubuntu-latest-8-cores
runs-on: test-sh-runner
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down