forked from VLSI-EDA/PoC
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
executable file
·456 lines (416 loc) · 10.7 KB
/
Copy path.gitlab-ci.yml
File metadata and controls
executable file
·456 lines (416 loc) · 10.7 KB
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
variables:
GIT_SUBMODULE_STRATEGY: recursive
SIMULATOR_PAGES: "NVC" # simulator from which the results should be published on GitLab pages (GHDL, Riviera-PRO)
# Names for specific jobs
COMPILE_OSVVM_NAME : "OsvvmLibraries"
COMPILE_POC_NAME : "PoC"
SIMULATE_OSVVM_NAME : "OSVVM-RunAllTests"
SIMULATE_POC_NAME : "PoC-RunAllTests"
Scripts:
image: ${CI_REGISTRY}/docker-images/base-image:alpine
script:
- mv src/common/my_project.vhdl.template tb/common/my_project.vhdl # use CopyFile when its supporting renaming
- sed -i 's#\(constant\sMY_PROJECT_DIR\s*:\s*string\s*:=\s*\)".*";#\1"'"$(pwd)"'";#' tb/common/my_project.vhdl
- sed -i 's#\(constant\sMY_OPERATING_SYSTEM\s*:\s*string\s*:=\s*\)".*";#\1"LINUX";#' tb/common/my_project.vhdl
- CreateAndChangeDirectory "temp" "Simulation working directory"
- |
tee poc_namespace.tcl << EOF
namespace eval ::poc {
variable myConfigFile "../tb/common/my_config_GENERIC.vhdl"
variable myProjectFile "../tb/common/my_project.vhdl"
variable vendor "GENERIC"; # GENERIC for vendor-less build; Xilinx, Altera,... for vendor specific build
}
source ../../tools/OSVVM/poc.tcl
namespace import ::poc::*
EOF
tee setup_simulator.tcl <<EOF
source ../../lib/OSVVM-Scripts/StartUp.tcl
source ../poc_namespace.tcl
# -s -stop <i> set the stop counts to <i>
# -d -debug enable debugging
# -w -waves save waveforms
configureOSVVM
EOF
tee eval_prefix.tcl <<EOF
source ../setup_simulator.tcl
puts -nonewline $::poc::buildNamePrefix
EOF
tee osvvm_compile.tcl <<EOF
source ../setup_simulator.tcl
build ../../lib/OsvvmLibraries.pro [BuildName "\${::poc::buildNamePrefix}${COMPILE_OSVVM_NAME}"]
checkForBuildErrors
EOF
tee poc_compile.tcl <<EOF
source ../setup_simulator.tcl
build ../../src/PoC.pro [BuildName "\${::poc::buildNamePrefix}${COMPILE_POC_NAME}"]
checkForBuildErrors
EOF
tee osvvm_sim.tcl <<EOF
source ../setup_simulator.tcl
build ../../lib/RunAllTests.pro [BuildName "\${::poc::buildNamePrefix}${SIMULATE_OSVVM_NAME}"]
checkForRunErrors
EOF
tee poc_sim.tcl <<EOF
source ../setup_simulator.tcl
build ../../tb/RunAllTests.pro [BuildName "\${::poc::buildNamePrefix}${SIMULATE_POC_NAME}"]
checkForRunErrors
EOF
artifacts:
paths:
- tb/common/my_project.vhdl
- temp/*.tcl
expire_in: 1 hour
# --------------------
# ---- Templates -----
# --------------------
.SimulationWrapper:
before_script:
- |
if [ "$SIMULATOR" = "NVC" ]; then
CreateAndChangeDirectory "temp/NVC" "Simulation working directory"
export buildNamePrefix=$(nvc --do ../eval_prefix.tcl | tail -n 1 | sed 's/^#\s*//')
else
export buildNamePrefix=$(exec-$SIMULATOR.sh -n --tcl-file=temp/eval_prefix.tcl | tail -n 1 | sed 's/^#\s*//')
fi
- FullBuildName="${buildNamePrefix}${RESULT_NAME}"
- echo "Full buildname is $FullBuildName"
- echo "$FullBuildName" > $CI_PROJECT_DIR/temp/$SIMULATOR/full_build_name.txt
after_script:
- FullBuildName=$(cat temp/$SIMULATOR/full_build_name.txt)
- mkdir -p temp/junit
- CopyFile "temp/$SIMULATOR/$FullBuildName/$FullBuildName.xml" "temp/junit"
- CopyFile "temp/$SIMULATOR/$FullBuildName/$FullBuildName.yml" "temp/junit"
.compile:
extends:
- .SimulationWrapper
script:
- |
if [ "$SIMULATOR" = "NVC" ]; then
# before_script and script are running in the same shell; therefore no need to change the directory
nvc --do ../${TCL_FILE}
else
exec-$SIMULATOR.sh -n --tcl-file=temp/${TCL_FILE}
fi
artifacts:
paths:
- temp/$SIMULATOR
- temp/junit
- lib/osvvm/*_generated.vhd
expire_in: 1 week
when: always
.simulate:
extends:
- .SimulationWrapper
script:
- |
if [ "$SIMULATOR" = "NVC" ]; then
# before_script and script are running in the same shell; therefore no need to change the directory
nvc --do ../${TCL_FILE}
else
exec-$SIMULATOR.sh -n --tcl-file=temp/${TCL_FILE}
fi
allow_failure: true # if case the Riviera license is in use
artifacts:
paths:
- temp/junit
- temp/$SIMULATOR
reports:
junit: "temp/junit/*.xml"
expire_in: 1 week
when: always
# ---------------
# ---- GHDL -----
# ---------------
.GHDL:
parallel:
matrix:
- GHDL_BACKEND: ["llvm", "mcode"]
image: ${CI_REGISTRY}/docker-images/ghdl:${GHDL_BACKEND}
variables:
SIMULATOR: "GHDL"
GHDL_OSVVM_compile:
extends:
- .GHDL
- .compile
needs:
job: Scripts
artifacts: true
variables:
TCL_FILE: "osvvm_compile.tcl"
GHDL_PoC_compile:
extends:
- .GHDL
- .compile
needs:
- job: Scripts
artifacts: true
- job: GHDL_OSVVM_compile
artifacts: true
variables:
TCL_FILE: "poc_compile.tcl"
RESULT_NAME: "$COMPILE_POC_NAME"
GHDL_OSVVM_sim:
extends:
- .GHDL
- .simulate
needs:
- job: Scripts
artifacts: true
- job: GHDL_OSVVM_compile
artifacts: true
only:
- main
- master
- dev
variables:
TCL_FILE: "osvvm_sim.tcl"
RESULT_NAME: "$SIMULATE_OSVVM_NAME"
GHDL_PoC_sim:
extends:
- .GHDL
- .simulate
needs:
- job: Scripts
artifacts: true
- job: GHDL_PoC_compile
artifacts: true
variables:
TCL_FILE: "poc_sim.tcl"
RESULT_NAME: "$SIMULATE_POC_NAME"
# ------------------
# ---- Riviera -----
# ------------------
.RIVIERA-PRO:
image: ${CI_REGISTRY}/docker-images/rivierapro:latest
variables:
SIMULATOR: "Riviera-PRO"
RIVIERA_OSVVM_compile:
extends:
- .RIVIERA-PRO
- .compile
needs:
job: Scripts
artifacts: true
variables:
TCL_FILE: "osvvm_compile.tcl"
RESULT_NAME: "$COMPILE_OSVVM_NAME"
RIVIERA_PoC_compile:
extends:
- .RIVIERA-PRO
- .compile
needs:
- job: Scripts
artifacts: true
- job: RIVIERA_OSVVM_compile
artifacts: true
variables:
TCL_FILE: "poc_compile.tcl"
RESULT_NAME: "$COMPILE_POC_NAME"
RIVIERA_OSVVM_sim:
extends:
- .RIVIERA-PRO
- .simulate
needs:
- job: Scripts
artifacts: true
- job: RIVIERA_OSVVM_compile
artifacts: true
- job: RIVIERA_PoC_compile # avoid license blocking
artifacts: true
only:
- main
- master
- dev
allow_failure: true
variables:
TCL_FILE: "osvvm_sim.tcl"
RESULT_NAME: "$SIMULATE_OSVVM_NAME"
RIVIERA_PoC_sim:
extends:
- .RIVIERA-PRO
- .simulate
needs:
- job: Scripts
artifacts: true
- job: RIVIERA_PoC_compile
artifacts: true
- job: RIVIERA_OSVVM_sim # avoid license blocking
optional: true
artifacts: false
variables:
TCL_FILE: "poc_sim.tcl"
RESULT_NAME: "$SIMULATE_POC_NAME"
# --------------
# ---- NVC -----
# --------------
.NVC:
image: ${CI_REGISTRY}/docker-images/nvc:latest
variables:
SIMULATOR: "NVC"
NVC_OSVVM_compile:
extends:
- .NVC
- .compile
needs:
job: Scripts
artifacts: true
variables:
TCL_FILE: "osvvm_compile.tcl"
RESULT_NAME: "$COMPILE_OSVVM_NAME"
NVC_PoC_compile:
extends:
- .NVC
- .compile
needs:
- job: Scripts
artifacts: true
- job: NVC_OSVVM_compile
artifacts: true
variables:
TCL_FILE: "poc_compile.tcl"
RESULT_NAME: "$COMPILE_POC_NAME"
NVC_OSVVM_sim:
extends:
- .NVC
- .simulate
needs:
- job: Scripts
artifacts:
- job: NVC_OSVVM_compile
artifacts: true
only:
- main
- master
- dev
variables:
TCL_FILE: "osvvm_sim.tcl"
RESULT_NAME: "$SIMULATE_OSVVM_NAME"
NVC_PoC_sim:
extends:
- .NVC
- .simulate
needs:
- job: Scripts
artifacts: true
- job: NVC_PoC_compile
artifacts: true
variables:
TCL_FILE: "poc_sim.tcl"
RESULT_NAME: "$SIMULATE_POC_NAME"
# --------------------------
# ----- Documentation ------
# --------------------------
MergeReports:
image: ${CI_REGISTRY}/docker-images/base-image:alpine
needs:
- job: GHDL_PoC_sim
artifacts: true
- job: RIVIERA_PoC_sim
artifacts: true
- job: NVC_PoC_sim
artifacts: true
before_script:
- pip install pyEDAA.Reports
script:
- mkdir -p report/unit
- pyedaa-reports -v unittest "--merge=Any-JUnit:temp/junit/*.xml" "--output=pyTest-JUnit:report/unit/unittest.xml"
- mv temp/junit/${SIMULATOR_PAGES}-PoC.yml report/unit/osvvmreport.yml
artifacts:
paths:
- report/unit
Sphinx:
image: ${CI_REGISTRY}/docker-images/base-image:alpine
needs:
- job: MergeReports
artifacts: true
parallel:
matrix:
- SPHINX_BUILDER: ["html", "latex"]
before_script:
- pip install -U -r docs/requirements.txt
script:
- cd docs
- sphinx-build --verbose --builder ${SPHINX_BUILDER} -d _build/doctrees --jobs 4 -w _build/${SPHINX_BUILDER}.log . _build/${SPHINX_BUILDER}
artifacts:
paths:
- docs/_build/${SPHINX_BUILDER}
MikTeX:
needs:
- job: Sphinx
parallel:
matrix:
- SPHINX_BUILDER: "latex"
artifacts: true
image: ${CI_REGISTRY}/docker-images/miktex:sphinx
script:
- cd docs/_build/latex
- exec-LaTeX.sh --xelatex "PoC.tex"
after_script:
- CopyFile docs/_build/latex/PoC.pdf .
artifacts:
paths:
- ./*.pdf
allow_failure: true
# ------------------
# ----- Pages ------
# ------------------
.pages:
image: ${CI_REGISTRY}/docker-images/base-image:alpine
variables:
GIT_SUBMODULE_STRATEGY: normal
pages: true
before_script:
- apk update
- apk add tree
script:
- CopyDir docs/_build/html public
#- CopyFile PoC.pdf public
- tree public
after_script:
- echo "Pages accessible at ${CI_PAGES_URL}"
artifacts:
paths:
- public
pagesGHDL:
rules:
- if: >
$SIMULATOR_PAGES == "GHDL" &&
$CI_PIPELINE_SOURCE == "push" &&
$CI_COMMIT_BRANCH =~ /^(main|master|dev)$/
needs:
- job: GHDL_OSVVM_sim # main only
artifacts: true
optional: true
- job: GHDL_PoC_sim
artifacts: true
optional: true
extends:
- .pages
pagesRiviera:
rules:
- if: >
$SIMULATOR_PAGES == "Riviera-PRO" &&
$CI_PIPELINE_SOURCE == "push" &&
$CI_COMMIT_BRANCH =~ /^(main|master|dev)$/
needs:
- job: RIVIERA_PoC_sim # inherits artifacts from previous jobs
artifacts: true
optional: true
extends:
- .pages
pagesNVC:
extends:
- .pages
rules:
- if: >
$SIMULATOR_PAGES == "NVC" &&
$CI_PIPELINE_SOURCE == "push"
needs:
- job: NVC_OSVVM_sim
artifacts: true
optional: true
- job: NVC_PoC_sim
artifacts: true
optional: true
- job: Sphinx
artifacts: true