forked from opensvc/multipath-tools
-
Notifications
You must be signed in to change notification settings - Fork 3
98 lines (97 loc) · 2.83 KB
/
Copy pathmultiarch-stable.yaml
File metadata and controls
98 lines (97 loc) · 2.83 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: multiarch test for stable distros
on:
push:
branches:
- master
- queue
- tip
- 'stable-*'
paths:
- '.github/workflows/multiarch-stable.yaml'
- '**.h'
- '**.c'
- '**Makefile*'
- '**.mk'
pull_request:
branches:
- master
- queue
- 'stable-*'
paths:
- '.github/workflows/multiarch-stable.yaml'
- '**.h'
- '**.c'
- '**Makefile*'
- '**.mk'
jobs:
build-old:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
os:
- debian-trixie
- debian-bookworm
- debian-buster
- ubuntu-trusty
arch: [386, arm/v7]
include:
- os: debian-trixie
arch: s390x
- os: debian-trixie
arch: ppc64le
- os: debian-bookworm
arch: s390x
- os: debian-bookworm
arch: ppc64le
steps:
- name: checkout
uses: actions/checkout@v7
- name: enable foreign arch
uses: docker/setup-qemu-action@v4
with:
image: tonistiigi/binfmt:latest
- name: set architecture name
run: |
__arch="${{ matrix.arch }}"
echo "ARCH_NAME=${__arch//\//-}" >>"$GITHUB_ENV"
- name: Set coredump pattern
run: |
echo 'core.%e.%p' | sudo tee /proc/sys/kernel/core_pattern
- name: compile and run unit tests
id: test
run: |
docker run --pids-limit 4096 --platform linux/${{ matrix.arch }} \
-w /build -v${{ github.workspace }}:/build \
ghcr.io/mwilck/multipath-build-${{ matrix.os }} test
continue-on-error: true
- name: create binary archive
run: |
docker run --platform linux/${{ matrix.arch }} \
-w /build -v${{ github.workspace }}:/build \
ghcr.io/mwilck/multipath-build-${{ matrix.os }} test-progs.tar
if: steps.test.outcome != 'success'
- name: upload binary archive
uses: actions/upload-artifact@v7
with:
name: binaries-${{ matrix.os }}-${{ env.ARCH_NAME }}
path: test-progs.tar
overwrite: true
if: steps.test.outcome != 'success'
- name: Make core dumps accessible
run: |
find . \( -name 'core*' \) -print0 | xargs -0 -r sudo chmod a+r
if: steps.test.outcome != 'success'
- name: save test outputs
run: make test-outputs.tar
if: steps.test.outcome != 'success'
- name: upload test outputs
uses: actions/upload-artifact@v7
with:
name: test-${{ matrix.os }}-${{ env.ARCH_NAME }}
path: test-outputs.tar
overwrite: true
if: steps.test.outcome != 'success'
- name: fail if test failed
run: /bin/false
if: steps.test.outcome != 'success'