forked from davea42/libdwarf-code
-
Notifications
You must be signed in to change notification settings - Fork 1
232 lines (219 loc) · 6.35 KB
/
test.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
231
232
name: ci
on:
pull_request:
branches: [ master ]
workflow_dispatch:
permissions: read-all
jobs:
linux_autotools:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: autoreconf
run: autoreconf -vif
- name: configure
run: ./configure --enable-dwarfexample
- name: make -j
run: make
- name: make -j check
run: make check
- name: make distcheck
run: make distcheck
linux_cmake:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install cmake
run: |
sudo apt-get -qq update
sudo apt install build-essential cmake
- name: Build libdwarf
run: |
mkdir builddir && cd builddir
cmake -G "Unix Makefiles" -DDO_TESTING=ON -DBUILD_DWARFEXAMPLE=ON ../CMakeLists.txt
make
ctest -R self
linux_meson:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install meson / ninja
run: |
sudo apt-get -qq update
sudo apt install build-essential meson ninja-build python3-pip python3-setuptools
pip3 install --upgrade pip
pip3 install meson --user
- name: Install doxygen
run: |
sudo apt install doxygen
- name: Build libdwarf
run: |
mkdir builddir && cd builddir
meson setup -Ddwarfexample=true . ..
ninja
ninja test
freebsd_autotools:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: FreeBSD-with-autotools
uses: cross-platform-actions/[email protected]
with:
operating_system: freebsd
sync_files: runner-to-vm
version: '14.0'
run: |
uname -a
whoami
freebsd-version
echo $SHELL
sudo pkg install -y python3 bash automake pkgconf
sudo pkg install -y libtool gmake binutils lzlib
autoreconf --warnings=all -vif
./configure
make
make check
freebsd_cmake:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: FreeBSD-with-cmake
uses: cross-platform-actions/[email protected]
with:
operating_system: freebsd
sync_files: runner-to-vm
version: '14.0'
run: |
uname -a
freebsd-version
echo $SHELL
sudo pkg install -y python3 bash cmake ninja pkgconf
sudo pkg install -y gmake binutils lzlib
mkdir builddir && cd builddir
cmake -G Ninja -DDO_TESTING=YES -DBUILD_NON_SHARED=YES -DBUILD_SHARED=NO -DBUILD_DWARFEXAMPLE=ON ../CMakeLists.txt
ninja
ninja test
freebsd_meson:
runs-on: ubuntu-latest
name: FreeBSD-with-meson
steps:
- uses: actions/checkout@v4
- name: FreeBSD-meson
uses: cross-platform-actions/[email protected]
with:
operating_system: freebsd
sync_files: runner-to-vm
version: '14.0'
run: |
uname -a
freebsd-version
echo $SHELL
sudo pkg install -y python3 bash meson ninja
sudo pkg install -y pkgconf gmake binutils zstd
mkdir build && cd build
meson setup -Ddwarfexample=true . ..
ninja
ninja test
macos_autotools:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: tools
run: brew install automake libtool
- name: autoreconf
run: autoreconf --warnings=all -vif
- name: config
run: ./configure --enable-dwarfexample --enable-wall
- name: make
run: |
make
make check
macos_cmake:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: brew
run: brew install cmake ninja
- name: cmake
run: |
mkdir builddir && cd builddir
cmake -G Ninja -DDO_TESTING=YES -DBUILD_NON_SHARED=YES -DBUILD_SHARED=NO -DBUILD_DWARFEXAMPLE=ON ../CMakeLists.txt
ninja
ninja test
macos_meson:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: brew
run: |
brew install meson ninja
- name: meson
run: |
mkdir builddir && cd builddir
meson setup -Ddwarfexample=true . ..
ninja
ninja test
msys2_autotools:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
env:
PYTHONIOENCODING: "utf-8"
steps:
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: base-devel git autoconf automake libtool mingw-w64-x86_64-toolchain mingw-w64-x86_64-zlib
- name: Configure
run: autoreconf -vif && ./configure --disable-static --enable-shared
- name: Build
run: make
- name: Check
run: make check
- name: Distcheck
run: make distcheck DISTCHECK_CONFIGURE_FLAGS="--disable-static --enable-shared"
msys2_cmake:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
env:
PYTHONIOENCODING: "utf-8"
steps:
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: base-devel git mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake mingw-w64-x86_64-zlib mingw-w64-x86_64-doxygen mingw-w64-x86_64-ninja
- name: Build libdwarf
run: |
mkdir builddir && cd builddir
cmake -G Ninja -DCMAKE_INSTALL_PREFIX=/c/msys64/usr -DBUILD_DWARFEXAMPLE=ON -DDO_TESTING=ON -DBUILD_SHARED:BOOL=TRUE -DBUILD_NON_SHARED:BOOL=FALSE ../CMakeLists.txt
ninja
ninja install
ninja test
msys2_meson:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
env:
PYTHONIOENCODING: "utf-8"
steps:
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: base-devel git mingw-w64-x86_64-toolchain mingw-w64-x86_64-python3 mingw-w64-x86_64-python3-pip mingw-w64-x86_64-meson mingw-w64-x86_64-ninja mingw-w64-x86_64-zlib mingw-w64-x86_64-doxygen
- name: Build libdwarf
run: |
mkdir builddir && cd builddir
meson setup --default-library shared -Ddwarfexample=true -Ddwarfgen=false . ..
ninja
ninja install
ninja test