-
Notifications
You must be signed in to change notification settings - Fork 2
400 lines (332 loc) · 11.6 KB
/
ci.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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
name: CI
on:
push:
branches:
- main
- dev
tags:
- v*
pull_request:
branches:
- main
- dev
env:
Bin: ./bin/release # Where to put release binaries
HashDir: ./hash # Where to put hashes of binaries
DepsDir: ./deps # Where to put local libs (primarily for Windows builds)
jobs:
binary:
strategy:
matrix:
include:
# Release builds
# astroterm-linux-x86_64
# Use an older Ubuntu version to ensure compatibility with older C libraries
- os: ubuntu-20.04
suffix: linux
compiler: gcc
arch: x86_64
# astroterm-darwin-aarch64
- os: macos-latest
suffix: darwin
compiler: clang
arch: aarch64
# astroterm-darwin-x86_64
- os: macos-13
suffix: darwin
compiler: clang
arch: x86_64
# astroterm-win-x86_64
- os: windows-latest
suffix: win
compiler: cl #mscv
arch: x86_64
# Coverage build
- os: ubuntu-20.04
suffix: linux
arch: x86_64
compiler: gcc
coverage: true
# Build with bsc5 ASCII
- os: ubuntu-20.04
suffix: linux
arch: x86_64
compiler: gcc
ascii: true
- os: windows-latest
suffix: win
compiler: cl #mscv
ascii: true
fail-fast: false
runs-on: ${{ matrix.os }}
env:
BinaryName: ${{ matrix.suffix == 'win' && format('astroterm-{0}-{1}.exe', matrix.suffix, matrix.arch) || format('astroterm-{0}-{1}', matrix.suffix, matrix.arch)}}
steps:
- name: Checkout Code
uses: actions/checkout@v4
# ------------------------------------------------------------------------
# Linux Dependencies
# ------------------------------------------------------------------------
# gcovr is for coverage build
- name: Install Linux Dependencies
if: matrix.suffix == 'linux'
run: |
sudo apt-get update
sudo apt-get install -y \
python3-pip \
python3-setuptools \
ninja-build \
build-essential \
xxd \
wget \
pkg-config \
libncurses-dev \
libargtable2-dev
pip3 install meson gcovr
# ------------------------------------------------------------------------
# macOS Dependencies
# ------------------------------------------------------------------------
# Use argtable2 since argtable3 is only available as a dylib
- name: Install macOS Dependencies
if: matrix.suffix == 'darwin'
run: |
brew update
brew install \
meson \
ninja \
ncurses \
argtable
# ------------------------------------------------------------------------
# Windows Dependencies
# ------------------------------------------------------------------------
- name: Setup Python
if: matrix.suffix == 'win'
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Python Dependencies
if: matrix.suffix == 'win'
run: pip install meson ninja
- name: Prepare MSVC
if: matrix.suffix == 'win'
uses: bus1/cabuild/action/msdevshell@v1
with:
architecture: x64
# The most up to date release of PDCurses is outdated,
# so we clone directly
- name: Clone and Build PDCurses
if: matrix.suffix == 'win'
run: |
mkdir ${{ env.DepsDir }}/lib
mkdir ${{ env.DepsDir }}/include
cd ${{ env.DepsDir }}
git clone https://github.com/wmcbrine/PDCurses/
cd PDCurses/wincon
nmake -f Makefile.vc WIDE=Y UTF8=Y
copy pdcurses.lib ../../lib
copy ../curses.h ../../include
copy ../panel.h ../../include
# Couldn't get Argtable3 to build nicely so we just use Argtable2 for Windows
- name: Download and Build Argtable2
if: matrix.suffix == 'win'
run: |
cd ${{ env.DepsDir }}
curl -L -o argtable2-13.tar.gz http://prdownloads.sourceforge.net/argtable/argtable2-13.tar.gz
tar -xzf argtable2-13.tar.gz
cd ./argtable2-13\src
nmake -f Makefile.nmake
copy argtable2.lib ../../lib
copy argtable2.h ../../include
# ------------------------------------------------------------------------
# Build and test
# ------------------------------------------------------------------------
- name: Download BSC5
env:
URL: ${{ matrix.ascii && 'https://web.archive.org/web/20250114171002if_/http://tdc-www.harvard.edu/catalogs/ybsc5.gz' || 'https://web.archive.org/web/20231007085824if_/http://tdc-www.harvard.edu/catalogs/BSC5' }}
Path: ${{ matrix.ascii && './data/ybsc5.gz' || './data/bsc5' }}
run: |
${{ matrix.suffix == 'win' && format('Invoke-WebRequest -OutFile {0} -Uri {1}', env.Path, env.URL) || format('curl -L -o {0} {1}', env.Path, env.URL) }}
- name: Unzip ASCII BSC5
if: matrix.ascii
run: |
cd data
${{ matrix.suffix == 'win' && '7z x ybsc5.gz -so > ybsc5' || 'gunzip ybsc5.gz' }}
ls
# Create a static release
- name: Build
env:
CC: ${{ matrix.compiler }}
BuildFlag: ${{ matrix.coverage && '-Db_coverage=true' || '--buildtype=release -Dprefer_static=true'}}
run: |
meson setup build $BuildFlag
meson compile --verbose -C build
- name: Test
run: |
meson test -v -C build
# ------------------------------------------------------------------------
# Compute Coverage
# ------------------------------------------------------------------------
- name: Generate Code Coverage Reports
if: matrix.coverage
run: |
ninja coverage-xml -C build
- name: Upload Coverage
if: matrix.coverage
uses: actions/upload-artifact@v4
with:
name: coverage
path: build/meson-logs/coverage.xml
if-no-files-found: error
# ------------------------------------------------------------------------
# Generate Hash
# ------------------------------------------------------------------------
- name: Generate Hash
run: |
mkdir -p ${{ env.HashDir }}
${{ matrix.suffix == 'win' && 'certutil -hashfile build/astroterm.exe SHA256' || 'shasum -a 256 build/astroterm' }} > ${{ env.HashDir }}/${{ env.BinaryName }}.sha256
- name: Upload Hash
if: ${{ !matrix.coverage && !matrix.ascii }}
uses: actions/upload-artifact@v4
with:
name: ${{ env.BinaryName }}.sha256
path: ${{ env.HashDir }}/*
if-no-files-found: error
# ------------------------------------------------------------------------
# Upload Binary
# ------------------------------------------------------------------------
- name: Rename Binary File
if: ${{ !matrix.coverage && !matrix.ascii }}
run: |
mkdir -p ${{env.Bin}}
mv ${{ matrix.suffix == 'win' && 'build/astroterm.exe' || 'build/astroterm' }} ${{env.Bin}}/${{env.BinaryName}}
- name: Upload Binary
if: ${{ !matrix.coverage && !matrix.ascii }}
uses: actions/upload-artifact@v4
with:
name: ${{ env.BinaryName }}
path: ${{env.Bin}}
if-no-files-found: error
# Ensure binaries are standalone
run:
needs: binary
strategy:
matrix:
include:
# astroterm-linux-x86_64
- os: ubuntu-20.04
suffix: linux
arch: x86_64
# astroterm-darwin-aarch64
- os: macos-latest
suffix: darwin
arch: aarch64
# astroterm-darwin-x86_64
- os: macos-13
suffix: darwin
arch: x86_64
# astroterm-win-x86_64
- os: windows-latest
suffix: win
arch: x86_64
fail-fast: false
runs-on: ${{ matrix.os }}
env:
BinaryName: ${{ matrix.suffix == 'win' && format('astroterm-{0}-{1}.exe', matrix.suffix, matrix.arch) || format('astroterm-{0}-{1}', matrix.suffix, matrix.arch)}}
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Download Release Binary
uses: actions/download-artifact@v4
with:
pattern: ${{ env.BinaryName }}*
path: ${{env.Bin}}
merge-multiple: true
- name: List Release Directiory
run: |
ls -l ${{env.Bin}}
- name: Set Executable Permissions
if: matrix.suffix != 'win'
run: |
chmod +x ${{env.Bin}}/${{ env.BinaryName }}
- name: Run Binary
run: |
${{env.Bin}}/${{ env.BinaryName }} -v
code-quality:
runs-on: ubuntu-latest
needs: run
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Code Quality Tools
run: |
sudo apt-get install -y cppcheck clang-format
- name: Run Cppcheck
run: |
cppcheck \
--suppress=missingIncludeSystem \
--suppress=unusedFunction \
--suppress=missingInclude \
--suppress=style \
--error-exitcode=1 \
-i src/strptime.c \
-I include \
src/
- name: Check Formatting
run: |
sh ./scripts/format.sh --check
upload-coverage:
runs-on: ubuntu-latest
needs: code-quality
steps:
- name: Download Coverage Reports
uses: actions/download-artifact@v4
with:
name: coverage
path: coverage
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage/coverage.xml
fail_ci_if_error: true
publish-release:
runs-on: ubuntu-latest
needs: [binary, run, code-quality, upload-coverage]
permissions:
contents: write
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
steps:
- name: Download Release Binaries
uses: actions/download-artifact@v4
with:
pattern: astroterm-*
path: ${{env.Bin}}
merge-multiple: true
- name: Verify Version Consistency
run: |
TAG_VERSION="${{ github.ref_name }}"
BINARY_PATH="${{env.Bin}}/astroterm-linux-x86_64"
# Ensure the binary is executable
chmod +x "$BINARY_PATH"
# Extract version from binary output
BINARY_VERSION=$($BINARY_PATH -v | awk '{print $2}')
# Remove the "v" prefix if present
if [[ "$TAG_VERSION" == v* ]]; then
TAG_VERSION=${TAG_VERSION:1}
fi
# Compare the two versions
if [ "$TAG_VERSION" != "$BINARY_VERSION" ]; then
echo "Error: Git tag version ($TAG_VERSION) does not match binary version ($BINARY_VERSION)."
exit 1
fi
echo "Success: Git tag version ($TAG_VERSION) matches binary version ($BINARY_VERSION)."
- name: List files in release folder
run: ls -al ${{env.Bin}}
- name: Update GitHub Release
uses: ncipollo/release-action@58ae73b360456532aafd58ee170c045abbeaee37 # v1.10.0
with:
artifacts: ${{env.Bin}}/*
generateReleaseNotes: true
draft: true
token: ${{ secrets.GITHUB_TOKEN }}
name: ${{ github.ref_name }}