-
Notifications
You must be signed in to change notification settings - Fork 48
54 lines (53 loc) · 1.21 KB
/
multiarch-stable.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: multiarch test for stable distros
on:
push:
branches:
- master
- queue
- tip
paths:
- '**.h'
- '**.c'
- '**Makefile*'
- '**.mk'
pull_request:
branches:
- master
- queue
paths:
- '**.h'
- '**.c'
- '**Makefile*'
- '**.mk'
jobs:
build-old:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
os:
- debian-bookworm
- debian-buster
- ubuntu-trusty
arch: [386, arm/v7]
include:
- os: debian-bookworm
arch: aarch64
- os: debian-bookworm
arch: s390x
- os: debian-bookworm
arch: ppc64le
steps:
- name: checkout
uses: actions/checkout@v2
- name: enable foreign arch
uses: dbhi/qus/action@main
- name: compile and run unit tests
uses: mosteo-actions/docker-run@v1
with:
image: ghcr.io/mwilck/multipath-build-${{ matrix.os }}
guest-dir: /build
host-dir: ${{ github.workspace }}
command: test
params: "--platform linux/${{ matrix.arch }}"
pull-params: "--platform linux/${{ matrix.arch }}"