Skip to content

Commit

Permalink
Run ODT jobs on dedicated runners (#2079)
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 cdd5112 commit db48e3c
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 @@ -139,7 +139,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 @@ -177,7 +177,7 @@ jobs:
needs: [initialize]
permissions:
packages: write
runs-on: [self-hosted, linux, X64]
runs-on: [self-hosted, linux-runner]
steps:
- name: Checkout files
uses: kaidokert/[email protected]
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
build:
needs: [initialize, docker-build-image]
permissions: {}
runs-on: [self-hosted, linux, X64]
runs-on: [self-hosted, linux-runner]
name: ${{matrix.name}}_${{matrix.config}}
strategy:
fail-fast: false
Expand Down Expand Up @@ -298,7 +298,7 @@ jobs:
inputs.nightly == 'true' || github.event_name == 'schedule') &&
vars.RUN_ODT_TESTS_ON_NIGHTLY != 'False') ||
( github.event_name == 'push' && vars.RUN_ODT_TESTS_ON_POSTSUBMIT != 'False' ) )
runs-on: [self-hosted, linux, X64]
runs-on: [self-hosted, odt-runner]
name: ${{ matrix.name }}_on_device_${{ matrix.shard }}
container: ${{ needs.docker-unittest-image.outputs.docker_unittest_tag }}
permissions: {}
Expand Down Expand Up @@ -328,7 +328,7 @@ jobs:
needs: [initialize, docker-unittest-image, build]
permissions: {}
if: needs.initialize.outputs.on_host_test == 'true'
runs-on: [self-hosted, linux, X64]
runs-on: [self-hosted, linux-runner]
name: ${{matrix.name}}_${{matrix.shard}}_test
strategy:
fail-fast: false
Expand Down

0 comments on commit db48e3c

Please sign in to comment.