-
-
Notifications
You must be signed in to change notification settings - Fork 80
458 lines (447 loc) · 13.7 KB
/
build-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
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
name: Build and test
on: [push, pull_request]
jobs:
build-ubuntu:
name: Ubuntu 22.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Get version
id: version
run: |
vers=$(sed -n '1s/AC_INIT(\[.*\], \[\([0-9\.]*\).*\].*/\1/p' configure.ac)
full=$(git log --date=format:%Y%m%d --pretty=$vers~git%cd.%h -1)
echo "VERSION=$full" >> $GITHUB_ENV
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install automake flex llvm-dev check lcov \
libdw-dev libffi-dev libreadline-dev tcl8.6-dev \
libzstd-dev libxml2-utils libjansson-dev
- name: Generate configure script
run: ./autogen.sh
- name: Configure
run: |
mkdir build && cd build
../configure --enable-gcov --enable-asan \
--with-llvm=/usr/bin/llvm-config --enable-debug \
--enable-tcl --enable-gui
- name: Build
run: make -C build -j $(nproc)
- name: Test
run: ASAN_OPTIONS=detect_leaks=0 make -C build check
- name: Test in JIT mode
run: |
export NVC_JIT_ASYNC=0
export NVC_JIT_THRESHOLD=1
export FORCE_JIT=1
export ASAN_OPTIONS=detect_leaks=0
cd build
./bin/run_regr
- name: Test in interpreter mode
run: |
export NVC_JIT_THRESHOLD=0
export FORCE_JIT=1
export ASAN_OPTIONS=detect_leaks=0
cd build
./bin/run_regr
# ieee12 too slow
# - name: Test without intrinsics
# run: |
# export NVC_JIT_INTRINSICS=0
# cd build
# rm -rf logs
# ./bin/run_regr ieee
- name: Test without vector intrinsics
run: |
export NVC_JIT_INTRINSICS=1
export NVC_VECTOR_INTRINSICS=0
cd build
rm -rf logs
ASAN_OPTIONS=detect_leaks=0 ./bin/run_regr ieee
- name: JIT benchmarks
run: |
make -C build bin/jitperf
export ASAN_OPTIONS=detect_leaks=0 # XXX: remove this
./build/bin/jitperf -L build/lib/ test/perf/simple.vhd
- name: Check for orphan tests
run: make -C build orphan-tests
- name: Coverage report
run: make -C build cov-generate
- name: Coveralls
continue-on-error: true
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./build/coverage/nvc.info
build-mac:
name: Mac OS
runs-on: macos-12
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Fix Python symlinks
run: |
find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete -print
brew unlink python && brew link --overwrite python
- name: Install dependencies
run: brew install llvm check automake libffi pkg-config zstd
- name: Generate configure script
run: ./autogen.sh
- name: Configure
run: |
mkdir build && cd build
../configure --with-llvm=$(brew --prefix llvm)/bin/llvm-config \
--enable-debug --disable-lto
- name: Build
run: make -C build -j $(nproc)
- name: Test
run: make -C build check
- name: Test in JIT mode
run: |
export NVC_JIT_ASYNC=0
export NVC_JIT_THRESHOLD=1
export FORCE_JIT=1
cd build
rm -rf logs
./bin/run_regr
- name: Dist clean
run: make -C build distclean
- name: Configure for release
run: |
cd build
../configure --with-llvm=$(brew --prefix llvm)/bin/llvm-config \
--disable-debug
- name: Build release
run: make -C build -j $(nproc)
build-windows:
name: Windows MSYS2
runs-on: windows-2022
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: msys2/setup-msys2@v2
with:
update: true
install: >-
base-devel
mingw-w64-x86_64-llvm
mingw-w64-x86_64-check
mingw-w64-x86_64-ncurses
mingw-w64-x86_64-libffi
mingw-w64-x86_64-pkgconf
mingw-w64-x86_64-gcc
mingw-w64-x86_64-tcl
mingw-w64-x86_64-tcllib
mingw-w64-x86_64-zstd
unzip
git
autoconf
automake-wrapper
- name: Generate configure script
run: bash autogen.sh
- name: Configure
run: |
mkdir build
cd build
bash ../configure --enable-debug --disable-lto
- name: Build
run: make -C build -j $(nproc)
- name: Test
run: make -C build check
- name: Test in JIT mode
run: |
export NVC_JIT_ASYNC=0
export NVC_JIT_THRESHOLD=1
export FORCE_JIT=1
cd build
rm -rf logs
./bin/run_regr
- name: Build MSYS2 package
run: |
cd contrib/msys2
makepkg-mingw -sCLf --nocheck
pacman -Qlp *.zst
echo "MSYS2_PKG=$(ls *.zst)" >> $GITHUB_ENV
- name: Install release
run: pacman -U --noconfirm contrib/msys2/*.zst
- name: Install OSVVM
run: nvc --install osvvm
- name: Install UVVM
run: nvc --install uvvm
- name: 'Upload artifact'
uses: actions/upload-artifact@v4
with:
name: 'MSYS2 mingw64 package'
path: contrib/msys2/${{ env.MSYS2_PKG }}
build-package:
name: Build package
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Get version
id: version
run: |
vers=$(sed -n '1s/AC_INIT(\[.*\], \[\([0-9\.]*\).*\].*/\1/p' configure.ac)
full=$(git log --date=format:%Y%m%d --pretty=$vers~git%cd.%h -1)
echo "VERSION=$full" >> $GITHUB_ENV
- name: Build Debian package
run: |
ln -s contrib/debian debian
sed -i 's/nvc (.*)/nvc (${{ env.VERSION }}-1)/' debian/changelog
sudo apt-get update
sudo apt-get build-dep .
dpkg-buildpackage -uc -us -b
mv ../*.deb .
- name: 'Upload artifact'
uses: actions/upload-artifact@v4
with:
name: 'Ubuntu package'
path: nvc_${{ env.VERSION }}-1_amd64.deb
vests:
name: VESTs
needs: [ build-package ]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/checkout@v4
with:
repository: nickg/vests
path: vests
fetch-depth: 1
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install ruby ruby-colorize
- uses: actions/download-artifact@v4
with:
name: 'Ubuntu package'
- name: Install pre-built package
run: >-
sudo apt-get install ./nvc_*.deb
- name: Check --version output
run: nvc --version
- name: Run VESTs
run: >-
cd vests && ../test/run_vests.rb .
projects:
name: External Projects
needs: [ build-package ]
runs-on: ubuntu-22.04
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/checkout@v4
with:
repository: nickg/vhdl-projects
path: vhdl-projects
fetch-depth: 1
- uses: actions/download-artifact@v4
with:
name: 'Ubuntu package'
- name: Install pre-built package
run: >-
sudo apt-get install ./nvc_*.deb tcllib
- name: Check --version output
run: nvc --version
- name: Install OSVVM
run: nvc --install osvvm
- name: Install UVVM
run: nvc --install uvvm
- name: Install FMF packages
run: nvc --install fmf
- name: Test FPHDL
run: ./vhdl-projects/fphdl/test.sh
- name: Test ZPU
run: ./vhdl-projects/zpu/test.sh
- name: Test Flopoco
run: ./vhdl-projects/flopoco/test.sh
- name: Test HardH264
run: ./vhdl-projects/hardh264/test.sh
- name: Test J-Core
run: ./vhdl-projects/jcore/test.sh
- name: Test Dummy_Plug
run: ./vhdl-projects/ikwzm/dummyplug/test.sh
- name: Test OpenRIO
run: ./vhdl-projects/openrio/test.sh
- name: Test SPI-FPGA
run: ./vhdl-projects/spi-fpga/test.sh
- name: Test JSON-for-VHDL
run: ./vhdl-projects/json/test.sh
- name: Test UVVM
run: ./vhdl-projects/uvvm/test.sh
- name: Test vhdl-format
run: ./vhdl-projects/format/test.sh
- name: Test NEORV32
run: ./vhdl-projects/neorv32/test.sh
- name: Test vhdl-extras
run: ./vhdl-projects/extras/test.sh
- name: Test PoC
run: ./vhdl-projects/poc/test.sh
- name: Test FMF dsp6713
run: ./vhdl-projects/fmf/dsp6713/test.sh
- name: Test Grlib
run: ./vhdl-projects/grlib/test.sh
- name: Test MEGA65
run: ./vhdl-projects/mega65/test.sh
- name: Test NetWiz
run: ./vhdl-projects/netwiz/test.sh
- name: Test real_matrix package
run: ./vhdl-projects/realmatrix/test.sh
- name: Test Canola
run: ./vhdl-projects/canola/test.sh
vunit:
name: VUnit
needs: [ build-package ]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
repository: VUnit/vunit
ref: master
path: vunit
submodules: recursive
fetch-depth: 1
- uses: actions/checkout@v4
with:
repository: antonblanchard/microwatt
ref: master
path: microwatt
fetch-depth: 1
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install python3 python3-colorama make
- uses: actions/download-artifact@v4
with:
name: 'Ubuntu package'
- name: Install pre-built package
run: >-
sudo apt-get install ./nvc_*.deb
- name: Check --version output
run: nvc --version
- name: Set environment variables
run: |
echo "VUNIT_SIMULATOR=nvc" >> $GITHUB_ENV
echo "PYTHONPATH=$(pwd)/vunit" >> $GITHUB_ENV
- name: Run uart example
run: |
python3 vunit/examples/vhdl/uart/run.py
- name: Run axi_dma example
run: |
python3 vunit/examples/vhdl/axi_dma/run.py
- name: Run com example
run: |
python3 vunit/examples/vhdl/com/run.py
- name: Run com tests
run: |
python3 vunit/vunit/vhdl/com/run.py
- name: Run data_types tests
run: |
python3 vunit/vunit/vhdl/data_types/run.py
- name: Run verification_components tests
run: |
python3 vunit/vunit/vhdl/verification_components/run.py
- name: Run Microwatt tests
run: |
cd microwatt
make git.vhdl
python3 run.py
osvvm:
name: OSVVM
needs: [ build-package ]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Get OSVVM version
run: |
vers=$(awk '/git_wrapper/ { print $3; }' contrib/install-osvvm.sh)
echo "OSVVM_VERSION=$vers" >> $GITHUB_ENV
- uses: actions/checkout@v4
with:
repository: OSVVM/OsvvmLibraries
path: OsvvmLibraries
# TODO: switch to OSVVM_VERSION after next release
#ref: ${{ env.OSVVM_VERSION }}
ref: dev
submodules: recursive
fetch-depth: 1
- name: Patch OSVVM to reduce verbosity
run: |
find OsvvmLibraries/Scripts -name VendorScripts_NVC.tcl -exec \
sed -i '/puts $SimulateMessage/d' \{} \;
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install tcl tcllib git
- uses: actions/download-artifact@v4
with:
name: 'Ubuntu package'
- name: Install pre-built package
run: >-
sudo apt-get install ./nvc_*.deb
- name: Check --version output
run: nvc --version
- name: Run OSVVM tests
run: |
export OSVVM_DIR=./OsvvmLibraries
export OSVVM_MUST_BUILD=1
tclsh ./test/test-osvvm.tcl
cocotb:
name: Cocotb
needs: [ build-package ]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
repository: cocotb/cocotb
ref: master
path: cocotb
submodules: recursive
fetch-depth: 1
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install python3 python3-nox
- uses: actions/download-artifact@v4
with:
name: 'Ubuntu package'
- name: Install pre-built package
run: >-
sudo apt-get install ./nvc_*.deb
- name: Check --version output
run: nvc --version
- name: Run cocotb regression tests
run: |
cd cocotb
python3 -mnox -k "dev_test_sim and nvc and vhdl"
msi-installer:
name: Windows installer
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build MSI installer
uses: ./.github/actions/windows-installer
- name: Run ieee1 regression test
shell: powershell
run: |
nvc.exe -a test\regress\ieee1.vhd
nvc.exe -e ieee1
nvc.exe -r ieee1