-
-
Notifications
You must be signed in to change notification settings - Fork 80
361 lines (353 loc) · 10.5 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
name: Build and test
on: [push, pull_request]
jobs:
build-ubuntu:
name: Ubuntu 20.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
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 install automake flex llvm-dev check lcov \
libdw-dev libffi-dev bison libreadline-dev tcl8.6-dev \
libzstd-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-verilog --enable-tcl
- name: Build
run: ASAN_OPTIONS=detect_leaks=0 make -C build
- 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
- name: JIT benchmarks
run: |
make -C build bin/jitperf
./build/bin/jitperf -L build/lib/ test/perf/simple.vhd
- 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
- name: Build Debian package
run: |
ln -s contrib/debian debian
sed -i 's/nvc (.*)/nvc (${{ env.VERSION }}-1)/' debian/changelog
sudo apt-get build-dep .
dpkg-buildpackage -uc -us -b
mv ../*.deb .
- name: 'Upload artifact'
uses: actions/upload-artifact@v3
with:
name: 'Ubuntu package'
path: nvc_${{ env.VERSION }}-1_amd64.deb
build-mac:
name: Mac OS
runs-on: macos-11
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- 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
- 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
build-windows:
name: Windows MSYS2
runs-on: windows-2019
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v3
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-pkg-config
mingw-w64-x86_64-gcc
mingw-w64-x86_64-tcl
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
- 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@v3
with:
name: 'MSYS2 mingw64 package'
path: contrib/msys2/${{ env.MSYS2_PKG }}
vests:
name: VESTs
needs: [ build-ubuntu ]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/checkout@v3
with:
repository: nickg/vests
path: vests
fetch-depth: 1
- name: Install dependencies
run: sudo apt-get install ruby ruby-colorize
- uses: actions/download-artifact@v3
with:
name: 'Ubuntu package'
- name: Install pre-built package
run: >-
sudo apt-get install ./nvc_*.deb
- name: Add to PATH
run: >-
echo /opt/nvc-*/bin >> $GITHUB_PATH
- name: Check --version output
run: nvc --version
- name: Run VESTs
run: >-
cd vests && ../test/run_vests.rb .
projects:
name: External Projects
needs: [ build-ubuntu ]
runs-on: ubuntu-20.04
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/checkout@v3
with:
repository: nickg/vhdl-projects
path: vhdl-projects
fetch-depth: 1
- uses: actions/download-artifact@v3
with:
name: 'Ubuntu package'
- name: Install pre-built package
run: >-
sudo apt-get install ./nvc_*.deb
- name: Add to PATH
run: >-
echo /opt/nvc-*/bin >> $GITHUB_PATH
- name: Check --version output
run: nvc --version
- name: Install OSVVM
run: nvc --install osvvm
- name: Install UVVM
run: nvc --install uvvm
- 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 OSVVM
run: ./vhdl-projects/osvvm/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
vunit:
name: VUnit
needs: [ build-ubuntu ]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
repository: VUnit/vunit
ref: master
path: vunit
submodules: recursive
fetch-depth: 1
- uses: actions/checkout@v3
with:
#repository: antonblanchard/microwatt
#ref: master
repository: nickg/microwatt
ref: fix-vunit
path: microwatt
fetch-depth: 1
- name: Install dependencies
run: sudo apt-get install python3 python3-colorama make
- uses: actions/download-artifact@v3
with:
name: 'Ubuntu package'
- name: Install pre-built package
run: >-
sudo apt-get install ./nvc_*.deb
- name: Add to PATH
run: >-
echo /opt/nvc-*/bin >> $GITHUB_PATH
- name: Check --version output
run: nvc --version
- name: Run uart example
run: |
export VUNIT_SIMULATOR=nvc
export PYTHONPATH=$(pwd)/vunit
cd vunit/examples/vhdl/uart
python3 run.py
- name: Run axi_dma example
run: |
export VUNIT_SIMULATOR=nvc
export PYTHONPATH=$(pwd)/vunit
cd vunit/examples/vhdl/axi_dma
python3 run.py
- name: Run com example
run: |
export VUNIT_SIMULATOR=nvc
export PYTHONPATH=$(pwd)/vunit
cd vunit/examples/vhdl/com
python3 run.py
- name: Run com tests
run: |
export VUNIT_SIMULATOR=nvc
export PYTHONPATH=$(pwd)/vunit
cd vunit/vunit/vhdl/com
python3 run.py
- name: Run verification_components tests
run: |
export VUNIT_SIMULATOR=nvc
export PYTHONPATH=$(pwd)/vunit
cd vunit/vunit/vhdl/verification_components
python3 run.py
- name: Run Microwatt tests
run: |
export VUNIT_SIMULATOR=nvc
export PYTHONPATH=$(pwd)/vunit
cd microwatt
make git.vhdl
python3 run.py
osvvm:
if: ${{ false }} # Takes too long for now
name: OSVVM
needs: [ build-ubuntu ]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Install dependencies
run: sudo apt-get install tcl tcllib git
- uses: actions/download-artifact@v3
with:
name: 'Ubuntu package'
- name: Install pre-built package
run: >-
sudo apt-get install ./nvc_*.deb
- name: Add to PATH
run: >-
echo /opt/nvc-*/bin >> $GITHUB_PATH
- name: Check --version output
run: nvc --version
- name: Run OSVVM tests
run: |
tclsh ./test/test-osvvm.tcl