Skip to content

Commit

Permalink
run CI for arm64 via qemu
Browse files Browse the repository at this point in the history
  • Loading branch information
dropwhile committed May 9, 2024
1 parent 7a26e02 commit cb0a0f6
Showing 1 changed file with 39 additions and 4 deletions.
43 changes: 39 additions & 4 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@ name: unit-tests
on:
workflow_dispatch:
push:
branches: ['**']
branches: ["**"]
pull_request:
branches: [master]

jobs:
build:
name: Build
test:
runs-on: ubuntu-latest

steps:
Expand All @@ -20,7 +19,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '>=1.22.0'
go-version: ">=1.22.0"
check-latest: true
id: go

Expand All @@ -40,3 +39,39 @@ jobs:
GOPROXY: "https://proxy.golang.org"
CI: true
run: make test

test-qemu:
needs: test
runs-on: ubuntu-latest
strategy:
matrix:
arch: [arm64]

steps:
- name: Src Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ">=1.22.0"
check-latest: true
id: go

- name: Install QEMU
uses: docker/setup-qemu-action@v3

- name: Build
env:
GOPROXY: "https://proxy.golang.org"
GOARCH: ${{ matrix.arch }}
run: make build

- name: Tests
env:
GOPROXY: "https://proxy.golang.org"
GOARCH: ${{ matrix.arch }}
CI: true
run: make test

0 comments on commit cb0a0f6

Please sign in to comment.