Skip to content

Backport(v1.16) ci: enable arm64 build test #368

Backport(v1.16) ci: enable arm64 build test

Backport(v1.16) ci: enable arm64 build test #368

Workflow file for this run

name: Linux
on:
push:
pull_request:
concurrency:
group: ${{ github.head_ref || github.sha }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
build:
name: Build & Test
strategy:
fail-fast: false
matrix:
include:
- dockerfile: v1.16/alpine
- dockerfile: v1.16/debian
- dockerfile: v1.16/arm64/debian
runs-on: >-
${{ (contains(matrix.dockerfile, 'arm64')) && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@master
- name: Build
run: make image DOCKERFILE=${{ matrix.dockerfile }} VERSION=test
- name: Test
run: make test DOCKERFILE=${{ matrix.dockerfile }} VERSION=test