Skip to content

Commit

Permalink
workflow: test self-hosted runners for arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
ayufan committed Feb 4, 2024
1 parent 73ddff1 commit a796694
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ on:

jobs:
docker-build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.runs_on }}
strategy:
matrix:
docker_arch: [amd64, arm64v8]
include:
- runs_on: [self-hosted, Linux, ARM64]
docker_arch: arm64v8
- runs_on: ubuntu-latest
docker_arch: amd64
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -22,10 +26,14 @@ jobs:
run: make ${{matrix.docker_arch}}-docker-build

client-build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.runs_on }}
strategy:
matrix:
docker_arch: [amd64, arm64v8]
include:
- runs_on: [self-hosted, Linux, ARM64]
docker_arch: arm64v8
- runs_on: ubuntu-latest
docker_arch: amd64
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit a796694

Please sign in to comment.