mirror of
https://github.com/hectorm/docker-qemu-reactos
synced 2025-01-08 01:55:30 +00:00
Added GitHub workflow for CI
This commit is contained in:
parent
900242aa90
commit
013512b665
25
.github/workflows/ci.yml
vendored
Normal file
25
.github/workflows/ci.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
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'
|
||||
uses: 'actions/checkout@v1'
|
||||
- name: 'Build image'
|
||||
run: |
|
||||
make binfmt-register
|
||||
make IMAGE_BUILD_OPTS="--pull" "build-${{ matrix.arch }}-image"
|
Loading…
Reference in New Issue
Block a user