-
Notifications
You must be signed in to change notification settings - Fork 10
318 lines (309 loc) · 8.57 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
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push, or for pull requests against master
push:
branches:
- '**'
# Only build release tags.
tags:
- v*
paths-ignore:
- NEWS
pull_request:
branches: [ master ]
paths-ignore:
- NEWS
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
makedist:
# Need 24.04 for netpbm with pamtowinicon
runs-on: 'ubuntu-24.04'
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
show-progress: false
- name: Install CCache
uses: hendrikmuhs/ccache-action@v1
with:
key: ${{ github.job }}
- name: Install package dependencies
run: |
sudo apt-get update
sudo apt-get install \
gettext \
libwxgtk3.2-dev \
libavcodec-dev \
libavformat-dev \
libgdal-dev \
libproj-dev \
libswscale-dev \
ghostscript \
inkscape \
netpbm \
liblocale-po-perl \
unifont \
python3-sphinx \
latexmk \
texlive-latex-extra \
tex-gyre \
w3m
- name: bootstrap source tree
run: |
autoreconf -fiv
git checkout INSTALL
- name: configure
run: ./configure --enable-werror CC='ccache gcc' CXX='ccache g++'
- name: make
run: make -j2
- name: Run tests
run: |
make check VERBOSE=1
- name: Check generated files are in .gitignore
# grep '^' passes through all input while giving a non-zero exit status
# if that input is empty.
run: |
printf '%s\n' .ccache > ".git/info/exclude"
git status --porcelain|grep '^' && { echo "The generated files listed above are not in .gitignore" ; exit 1; }; true
- name: Create distribution tarball
run: |
make dist
- uses: actions/upload-artifact@v4
with:
path: |
survex-*.tar.gz
# Files are already compressed so don't try to compress again.
compression-level: 0
retention-days: 1
if-no-files-found: error
wxwidgets3-0:
runs-on: 'ubuntu-20.04'
needs: makedist
steps:
- name: Install CCache
uses: hendrikmuhs/ccache-action@v1
with:
key: ${{ github.job }}
- name: Fetch distribution
uses: actions/download-artifact@v4
- name: Unpack distribution
run: |
mv artifact/* .
rmdir artifact
tar --strip-components=1 -xf survex-*.tar.gz
- name: Install package dependencies
run: |
sudo apt-get update
sudo apt-get install \
libwxgtk3.0-gtk3-dev \
libavcodec-dev \
libavformat-dev \
libgdal-dev \
libproj-dev \
libswscale-dev
- name: configure
run: ./configure CC='ccache gcc' CXX='ccache g++'
- name: make
run: make -j2
- name: Run tests
run: |
make check MSGFMT=: VERBOSE=1
valgrind:
runs-on: 'ubuntu-22.04'
needs: makedist
steps:
- name: Install CCache
uses: hendrikmuhs/ccache-action@v1
with:
key: ${{ github.job }}
- name: Fetch distribution
uses: actions/download-artifact@v4
- name: Unpack distribution
run: |
mv artifact/* .
rmdir artifact
tar --strip-components=1 -xf survex-*.tar.gz
- name: Install package dependencies
run: |
sudo apt-get update
sudo apt-get install \
libwxgtk3.0-gtk3-dev \
libavcodec-dev \
libavformat-dev \
libgdal-dev \
libproj-dev \
libswscale-dev
sudo apt-get install valgrind
- name: configure
run: ./configure CC='ccache gcc' CXX='ccache g++'
- name: make
run: make -j2
- name: Run tests
run: |
VALGRIND=valgrind make check MSGFMT=: VERBOSE=1
# Debian stable has wxWidgets 3.2.
debian-stable:
runs-on: 'ubuntu-latest'
needs: makedist
container: debian:stable
steps:
- name: Fetch distribution
uses: actions/download-artifact@v4
- name: Unpack distribution
run: |
mv artifact/* .
rmdir artifact
tar --strip-components=1 -xf survex-*.tar.gz
- name: Install package dependencies
run: |
apt-get update
apt-get install -y \
gcc \
g++ \
make \
pkg-config \
libwxgtk3.2-dev \
libavcodec-dev \
libavformat-dev \
libgdal-dev \
libproj-dev \
libswscale-dev
- name: Install CCache
uses: hendrikmuhs/ccache-action@v1
with:
key: ${{ github.job }}
- name: configure
run: ./configure --enable-werror CC='ccache gcc' CXX='ccache g++'
- name: make
run: make -j2
- name: Run tests
run: |
make check MSGFMT=: VERBOSE=1
linux-latest:
runs-on: 'ubuntu-24.04'
needs: makedist
steps:
- name: Install CCache
uses: hendrikmuhs/ccache-action@v1
with:
key: ${{ github.job }}
- name: Fetch distribution
uses: actions/download-artifact@v4
- name: Unpack distribution
run: |
mv artifact/* .
rmdir artifact
tar --strip-components=1 -xf survex-*.tar.gz
- name: Install package dependencies
run: |
sudo apt-get update
sudo apt-get install \
libwxgtk3.2-dev \
libavcodec-dev \
libavformat-dev \
libgdal-dev \
libproj-dev \
libswscale-dev
- name: configure
run: ./configure CC='ccache gcc' CXX='ccache g++'
- name: make
run: make -j2
- name: Run tests
run: |
make check MSGFMT=: VERBOSE=1
macos:
runs-on: 'macos-latest'
needs: makedist
steps:
- name: Install CCache
uses: hendrikmuhs/ccache-action@v1
with:
key: ${{ github.job }}
- name: Fetch distribution
uses: actions/download-artifact@v4
- name: Unpack distribution
run: |
mv artifact/* .
rmdir artifact
tar --strip-components=1 -xf survex-*.tar.gz
- name: Install package dependencies
run: |
# Workaround apparent homebrew bug 2024-03-05
rm -f /usr/local/bin/2to3-3.* /usr/local/bin/idle3.* /usr/local/bin/pydoc3.* /usr/local/bin/python3.* /usr/local/bin/python3.*-config
rm -f /usr/local/bin/2to3 /usr/local/bin/idle3 /usr/local/bin/pydoc3 /usr/local/bin/python3 /usr/local/bin/python3-config
brew update
brew install \
ffmpeg \
gdal \
gnu-tar \
proj \
wxwidgets
- name: configure
run: ./configure CC='ccache gcc' CXX='ccache g++'
- name: make
run: |
make -j3
- name: Run tests
run: |
make check MSGFMT=: VERBOSE=1
msys2-ucrt64:
runs-on: 'windows-latest'
needs: makedist
defaults:
run:
shell: msys2 {0}
steps:
- uses: msys2/setup-msys2@v2
with:
msystem: ucrt64
install: base-devel
pacboy: >-
gcc:p
ffmpeg:p
proj:p
wxwidgets3.2-msw:p
gdb:p
ntldd:p
# Build with GDAL broke somewhere between 1.4.9 and 1.4.10 releases.
# Rebuilding 1.4.9 now has the problem. Unresolved as of 2024-10-19.
# gdal:p
- name: Install CCache
uses: hendrikmuhs/ccache-action@v1
with:
key: ${{ github.job }}
variant: sccache
- name: Fetch distribution
uses: actions/download-artifact@v4
- name: Unpack distribution
run: |
mv artifact/* .
rmdir artifact
tar --strip-components=1 -xf survex-*.tar.gz
- name: configure
run: |
PATH=/c/Users/runneradmin/.cargo/bin:$PATH
export CC='sccache gcc'
export CXX='sccache g++'
./configure
- name: make
run: |
PATH=/c/Users/runneradmin/.cargo/bin:$PATH
make -j2
- name: Run tests
run: |
PATH=/c/Users/runneradmin/.cargo/bin:$PATH
make check MSGFMT=: VERBOSE=1
- name: Run innosetup
run: |
make mingw_iss RUN_EXE= NTLDD=ntldd PROJ_PREFIX=/ucrt64
- uses: actions/upload-artifact@v4
with:
name: microsoft-windows-installer
path: |
survex-microsoft-windows-*.exe
# Files are already compressed so don't try to compress again.
compression-level: 0
retention-days: 1
if-no-files-found: error