Skip to content

Commit

Permalink
(22.lts.1+) Run ODT jobs on dedicated runners (#2086)
Browse files Browse the repository at this point in the history
Make on-device test jobs run on dedicated runners that use very little
CPU and RAM. This should free up linux runners and reduce job queueing.

b/298255792
  • Loading branch information
isarkis committed Dec 16, 2023
1 parent 7625dfd commit 690118a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
# Builds, tags, and pushes Cobalt docker build images to ghr.
docker-build-image:
needs: [initialize]
runs-on: [self-hosted, linux, X64]
runs-on: [self-hosted, linux-runner]
permissions:
packages: write
steps:
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
needs: [initialize]
permissions:
packages: write
runs-on: [self-hosted, linux, X64]
runs-on: [self-hosted, linux-runner]
steps:
- name: Checkout files
uses: actions/checkout@v3
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
github.event_name != 'pull_request' ||
contains(github.event.pull_request.labels.*.name, 'on_device')
)
runs-on: [self-hosted, linux, X64]
runs-on: [self-hosted, odt-runner]
name: ${{ matrix.name }}_on_device_${{ matrix.type }}
container: ${{ needs.docker-unittest-image.outputs.docker_unittest_tag }}
permissions: {}
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
# Runs builds.
build:
needs: [initialize, docker-build-image]
runs-on: [self-hosted, linux, X64]
runs-on: [self-hosted, linux-runner]
permissions: {}
name: ${{matrix.name}}_${{matrix.config}}
strategy:
Expand Down Expand Up @@ -302,7 +302,7 @@ jobs:
on-host-test:
needs: [initialize, docker-unittest-image, build]
if: needs.initialize.outputs.on_host_test == 'true'
runs-on: [self-hosted, linux, X64]
runs-on: [self-hosted, linux-runner]
permissions: {}
name: ${{matrix.name}}_${{matrix.shard}}_test
strategy:
Expand Down

0 comments on commit 690118a

Please sign in to comment.