-
Notifications
You must be signed in to change notification settings - Fork 38
125 lines (102 loc) · 4.08 KB
/
main.yml
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# SPDX-FileCopyrightText: 2024 Emil Velikov <[email protected]>
# SPDX-FileCopyrightText: 2024 Lucas De Marchi <[email protected]>
#
# SPDX-License-Identifier: LGPL-2.1-or-later
name: Build and Test
on:
push:
branches: [master, ci-test]
pull_request:
branches: [master]
schedule:
- cron: "30 2 * * 0"
permissions:
contents: read
jobs:
build:
env:
CC: ${{ matrix.compiler }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
build: ['meson', 'autotools']
compiler: ['clang','gcc']
container:
- name: 'alpine:latest'
meson_setup: '-D docs=false -D b_sanitize=none'
- name: 'archlinux:multilib-devel'
multilib: 'true'
- name: 'debian:unstable'
multilib: 'true'
- name: 'fedora:latest'
- name: 'ubuntu:22.04'
multilib: 'true'
- name: 'ubuntu:24.04'
multilib: 'true'
container:
image: ${{ matrix.container.name }}
steps:
- name: Sparse checkout the local actions
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
sparse-checkout: .github
- uses: ./.github/actions/setup-alpine
if: ${{ startsWith(matrix.container.name, 'alpine') }}
- uses: ./.github/actions/setup-archlinux
if: ${{ startsWith(matrix.container.name, 'archlinux') }}
- uses: ./.github/actions/setup-debian
if: ${{ startsWith(matrix.container.name, 'debian') }}
- uses: ./.github/actions/setup-fedora
if: ${{ startsWith(matrix.container.name, 'fedora') }}
- uses: ./.github/actions/setup-ubuntu
if: ${{ startsWith(matrix.container.name, 'ubuntu') }}
- name: Checkout the whole project
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set the environment
run: |
# The second checkout above claims to set safe.directory, yet it
# doesn't quite work. Perhaps our double/sparse checkout is to blame?
git config --global --add safe.directory '*'
.github/print-kdir.sh >> "$GITHUB_ENV"
- name: configure (meson)
if: ${{ matrix.build == 'meson' }}
run: mkdir build && cd build && meson setup --native-file ../build-dev.ini ${{ matrix.container.meson_setup }} . ..
- name: configure (autotools)
if: ${{ matrix.build == 'autotools' }}
run: mkdir build && cd build && ../autogen.sh c
- name: build (meson)
if: ${{ matrix.build == 'meson' }}
run: cd build && meson compile
- name: build (autotools)
if: ${{ matrix.build == 'autotools' }}
run: cd build && make -j$(nproc)
- name: test (meson)
if: ${{ matrix.build == 'meson' }}
run: cd build && meson test || meson test --verbose
- name: test (autotools)
if: ${{ matrix.build == 'autotools' }}
run: cd build && make -j$(nproc) check
- name: install (meson)
if: ${{ matrix.build == 'meson' }}
run: cd build && DESTDIR=$PWD/inst meson install
- name: install (autotools)
if: ${{ matrix.build == 'autotools' }}
run: cd build && DESTDIR=$PWD/inst make install
- name: distcheck (meson)
if: ${{ matrix.build == 'meson' }}
run: cd build && meson dist
- name: distcheck (autotools)
if: ${{ matrix.build == 'autotools' }}
run: cd build && make distcheck
- name: configure (32bit) (meson)
if: ${{ matrix.build == 'meson' && matrix.container.multilib == 'true' }}
run: |
cross_options="-D zstd=disabled -D xz=disabled -D zlib=disabled -D openssl=disabled"
CC="$CC -m32" meson setup $cross_options build32/
- name: build (32bit) (meson)
if: ${{ matrix.build == 'meson' && matrix.container.multilib == 'true' }}
run: cd build32 && meson compile
- name: test (32bit) (meson)
if: ${{ matrix.build == 'meson' && matrix.container.multilib == 'true' }}
run: cd build32 && meson test || meson test --verbose