Skip to content

Commit

Permalink
build: Use self hosted runners for x86-64 workload
Browse files Browse the repository at this point in the history
Also tweak the naming of the jobs to make them more readable.

Signed-off-by: Rob Bradford <rbradford@rivosinc.com>
  • Loading branch information
rbradford committed Mar 18, 2024
1 parent 6b1dd99 commit 9d427d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -4,15 +4,15 @@ on: [pull_request, create]
jobs:
build:
name: Tests
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
include:
- runner: ubuntu-22.04
- runner: x86-64
coreboot-tests: true
- runner: focal-arm64
- runner: arm64
coreboot-tests: false
runs-on: ${{ matrix.runner == 'x86-64' && 'garm-jammy-16' || 'focal-arm64' }}
steps:
- name: Code checkout
uses: actions/checkout@v4

0 comments on commit 9d427d3

Please sign in to comment.