forked from libunwind/libunwind
-
Notifications
You must be signed in to change notification settings - Fork 1
230 lines (203 loc) · 7.04 KB
/
CI-unix.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
name: CI - Unix
permissions:
contents: read
on:
pull_request:
paths:
- '**'
- '!README'
- '!INSTALL'
- '!NEWS'
- '!doc/**'
- '!.**'
- '.github/workflows/CI-unix.yml'
push:
branches:
- v[0-9].*
- master
jobs:
build-gnu-native:
runs-on: ubuntu-22.04
name: ${{ matrix.target.arch }}-linux-gnu (native) ${{ matrix.toolchain.compiler }} ${{ matrix.optimization.CFLAGS }}
strategy:
fail-fast: false
matrix:
target:
- { arch: i686, triple: i686-pc-linux-gnu, CFLAGS: -m32 }
- { arch: x86_64, triple: x86_64-pc-linux-gnu, CFLAGS: }
toolchain:
- { compiler: gcc, CC: gcc-12, CXX: g++-12 }
- { compiler: clang, CC: clang-13, CXX: clang++-13 }
optimization:
- { CFLAGS: -O0 }
- { CFLAGS: -O3 }
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup
if: ${{ matrix.target.arch }} = 'i686'
run: |
sudo apt update
sudo apt install -y g++-12-multilib abigail-tools
- name: Configure
run: |
set -x
autoreconf -i
mkdir build
cd build
../configure --build=x86_64-pc-linux-gnu --host=${{ matrix.target.triple }} --enable-debug
env:
CC: ${{ matrix.toolchain.CC }}
CXX: ${{ matrix.toolchain.CXX }}
CFLAGS: "${{ matrix.target.CFLAGS }} ${{ matrix.optimization.CFLAGS }} -g -Wall -Wextra"
CXXFLAGS: "${{ matrix.target.CFLAGS }} ${{ matrix.optimization.CFLAGS }} -g -Wall -Wextra"
LDFLAGS: ${{ matrix.target.CFLAGS }}
- name: Build
run: |
make -C build -j
- name: Check ABI
if: ${{ success() }}
run:
make -C build/src abi-check
- name: Test (native)
if: ${{ success() }}
run: |
set -x
sudo bash -c 'echo core.%p.%p > /proc/sys/kernel/core_pattern'
ulimit -c unlimited
make -C build check -j8
env:
UNW_DEBUG_LEVEL: 4
- name: Show Logs
if: ${{ failure() }}
run: |
cat build/tests/test-suite.log 2>/dev/null
build-gnu-cross:
runs-on: ubuntu-22.04
name: ${{ matrix.config.target }}-linux-gnu (cross)
strategy:
fail-fast: false
matrix:
config:
- {target: arm, host: arm-linux-gnueabi, qemu: arm, gccver: 12 }
- {target: armhf, host: arm-linux-gnueabihf, qemu: arm, gccver: 12 }
- {target: aarch64, host: aarch64-linux-gnu, qemu: aarch64, gccver: 12 }
- {target: riscv64, host: riscv64-linux-gnu, qemu: riscv64, gccver: 12 }
- {target: ppc, host: powerpc-linux-gnu, qemu: ppc, gccver: 12 }
- {target: ppc64, host: powerpc64-linux-gnu, qemu: ppc64, gccver: 12 }
- {target: ppc64le, host: powerpc64le-linux-gnu, qemu: ppc64le, gccver: 12 }
- {target: s390x, host: s390x-linux-gnu, qemu: s390x, gccver: 12 }
- {target: mips, host: mips-linux-gnu, qemu: mips, gccver: 10 }
- {target: mips64, host: mips64-linux-gnuabi64, qemu: mips64, gccver: 10 }
- {target: mipsel, host: mipsel-linux-gnu, qemu: mipsel, gccver: 10 }
- {target: mips64el, host: mips64el-linux-gnuabi64, qemu: mips64el, gccver: 10 }
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Install QEMU
# this ensure install latest qemu on ubuntu, apt get version is old
env:
QEMU_SRC: "http://archive.ubuntu.com/ubuntu/pool/universe/q/qemu"
QEMU_VER: "qemu-user-static_7\\.2.*_amd64.deb$"
run: |
DEB=`curl -s $QEMU_SRC/ | grep -o -E 'href="([^"#]+)"' | cut -d'"' -f2 | grep $QEMU_VER | tail -1`
wget $QEMU_SRC/$DEB
sudo dpkg -i $DEB
- name: Install ${{ matrix.config.host }} Toolchain
run: |
sudo apt update
sudo apt install -y g++-${{ matrix.config.gccver }}-${{ matrix.config.host }} abigail-tools
- name: Configure with ${{ matrix.config.cc }}
run: |
set -x
autoreconf -i
mkdir build
cd build
../configure --build=$(config/config.guess) \
--host=${{ matrix.config.host }} \
--with-testdriver="$(pwd)/libtool execute $(pwd)/../scripts/qemu-test-driver" \
--enable-debug
env:
CC: ${{ matrix.config.host }}-gcc-${{ matrix.config.gccver }}
CXX: ${{ matrix.config.host }}-g++-${{ matrix.config.gccver }}
- name: Build
run: |
make -C build -j
env:
CFLAGS: "-Wall -Wextra -g -Og"
- name: ABI Check
run: |
case ${{ matrix.config.target }} in
aarch64|riscv*|s390x|x86*)
make -C build/src abi-check
;;
*)
srcdir=$(pwd)
cd build/tests
./check-namespace.sh
;;
esac
- name: Test
run: |
set -x
sudo bash -c 'echo core.%p.%p > /proc/sys/kernel/core_pattern'
ulimit -c unlimited
cd build
make check LOG_DRIVER_FLAGS="--qemu-arch ${{ matrix.config.qemu }}" \
QEMU_LD_PREFIX="$CROSS_LIB" \
LDFLAGS="-L$CROSS_LIB/lib"
env:
UNW_DEBUG_LEVEL: 4
CROSS_LIB: "/usr/${{ matrix.config.host }}"
- name: Show Logs
if: ${{ failure() }}
run: |
cat build/tests/test-suite.log 2>/dev/null
build-musl-native:
runs-on: ubuntu-latest
name: ${{ matrix.arch }}-linux-musl (native)
strategy:
fail-fast: false
matrix:
arch: [aarch64, ppc64le, riscv64, x86_64]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Alpine Linux
uses: jirutka/setup-alpine@359b91e094d3dc6292e4b627abb84d8856ab7ef2 # v1.2.0
with:
branch: edge
arch: ${{ matrix.arch }}
packages: >
autoconf
automake
build-base
libtool
libucontext-dev
linux-headers
xz-dev
shell-name: alpine.sh
- name: Configure
run: |
set -x
gcc --version
autoreconf -i
./configure --enable-debug
env:
CFLAGS: -g -O0 -Wall -Wextra
CXXFLAGS: -g -O0
LDFLAGS: -g -O0
shell: alpine.sh {0}
- name: Build
run: |
make -j
shell: alpine.sh {0}
- name: Test
if: ${{ success() }}
run: |
make check
env:
UNW_DEBUG_LEVEL: 5
shell: alpine.sh {0}
- name: Show Logs
if: ${{ failure() }}
run: |
cat tests/test-suite.log 2>/dev/null
shell: alpine.sh {0}