docker-qemu-reactos/.github/workflows/ci.yml

26 lines
508 B
YAML
Raw Normal View History

2022-02-08 22:39:47 +00:00
name: 'CI'
on:
push:
tags: ['*']
branches: ['*']
pull_request:
branches: ['*']
workflow_dispatch:
jobs:
build:
name: 'Build ${{ matrix.arch }} image'
runs-on: 'ubuntu-latest'
strategy:
matrix:
arch: ['amd64', 'arm64v8', 'arm32v7']
steps:
- name: 'Checkout project'
2022-03-02 18:46:49 +00:00
uses: 'actions/checkout@v3'
2022-02-08 22:39:47 +00:00
- name: 'Build image'
run: |
make binfmt-register
make IMAGE_BUILD_OPTS="--pull" "build-${{ matrix.arch }}-image"