Skip to content

Commit

Permalink
(20.lts.1+) Run ODT jobs on dedicated runners (#2088)
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 authored Dec 16, 2023
1 parent 07f2217 commit c6647d4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,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 @@ -127,7 +127,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 @@ -156,7 +156,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 @@ -190,7 +190,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 c6647d4

Please sign in to comment.