-
Notifications
You must be signed in to change notification settings - Fork 516
/
Jenkinsfile
1162 lines (1046 loc) · 55.2 KB
/
Jenkinsfile
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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env groovy
//=============================================================================
// Pipeline parameters
//=============================================================================
properties([parameters([
string(name: 'branch', defaultValue: ''),
booleanParam(name: 'test_markdown_links', defaultValue: true, description: 'Test markdown files and check for broken links'),
booleanParam(name: 'test_src_headers', defaultValue: true, description: 'Check copyright heaers of source files'),
booleanParam(name: 'test_fpga_tools', defaultValue: true, description: 'Test fpga-* commands on F1'),
booleanParam(name: 'test_hdk_scripts', defaultValue: true, description: 'Test the HDK setup scripts'),
booleanParam(name: 'test_sims', defaultValue: true, description: 'Run all Simulations'),
booleanParam(name: 'test_non_root_access', defaultValue: true, description: 'Test non-root access to FPGA tools'),
booleanParam(name: 'test_xdma', defaultValue: true, description: 'Test XDMA driver'),
booleanParam(name: 'test_py_bindings', defaultValue: true, description: 'Test Python Bindings'),
booleanParam(name: 'test_runtime_software', defaultValue: true, description: 'Test precompiled AFIs'),
booleanParam(name: 'test_dcp_recipes', defaultValue: false, description: 'Run DCP generation with all clock recipes and build strategies.'),
booleanParam(name: 'test_hdk_fdf', defaultValue: true, description: 'Run Full developer flow testing on cl_hello_world and cl_dram_dma'),
booleanParam(name: 'test_sdaccel_scripts', defaultValue: true, description: 'Test SDAccel setup scripts'),
booleanParam(name: 'test_all_sdaccel_examples_fdf', defaultValue: false, description: 'Run Full Developer Flow testing of all SDAccel examples. This overrides test_helloworld_sdaccel_example'),
booleanParam(name: 'test_helloworld_sdaccel_example_fdf', defaultValue: true, description: 'Run Full Developer Flow testing of the Hello World SDAccel example'),
booleanParam(name: 'test_all_vitis_examples_fdf', defaultValue: false, description: 'Run Full Developer Flow testing of all Vitis examples. This overrides test_helloworld_sdaccel_example'),
booleanParam(name: 'test_helloworld_vitis_example_fdf', defaultValue: true, description: 'Run Full Developer Flow testing of the Hello World Vitis example'),
booleanParam(name: 'debug_dcp_gen', defaultValue: false, description: 'Only run FDF on cl_hello_world. Overrides test_*.'),
booleanParam(name: 'debug_fdf_uram', defaultValue: false, description: 'Debug the FDF for cl_uram_example.'),
booleanParam(name: 'fdf_ddr_comb', defaultValue: false, description: 'run FDF for cl_dram_dma ddr combinations.'),
booleanParam(name: 'disable_runtime_tests', defaultValue: false, description: 'Option to disable runtime tests.'),
booleanParam(name: 'use_test_ami', defaultValue: false, description: 'This option asks for the test AMI from Jenkins'),
booleanParam(name: 'internal_simulations', defaultValue: false, description: 'This option asks for default agent from Jenkins')
])])
//=============================================================================
// Configuration
//=============================================================================
boolean test_markdown_links = params.get('test_markdown_links')
boolean test_src_headers = params.get('test_src_headers')
boolean test_hdk_scripts = params.get('test_hdk_scripts')
boolean test_fpga_tools = params.get('test_fpga_tools')
boolean test_sims = params.get('test_sims')
boolean test_non_root_access = params.get('test_non_root_access')
boolean test_xdma = params.get('test_xdma')
boolean test_py_bindings = params.get('test_py_bindings')
boolean test_runtime_software = params.get('test_runtime_software')
boolean test_dcp_recipes = params.get('test_dcp_recipes')
boolean test_hdk_fdf = params.get('test_hdk_fdf')
boolean test_sdaccel_scripts = params.get('test_sdaccel_scripts')
boolean test_all_sdaccel_examples_fdf = params.get('test_all_sdaccel_examples_fdf')
boolean test_helloworld_sdaccel_example_fdf = params.get('test_helloworld_sdaccel_example_fdf')
boolean test_all_vitis_examples_fdf = params.get('test_all_vitis_examples_fdf')
boolean test_helloworld_vitis_example_fdf = params.get('test_helloworld_vitis_example_fdf')
boolean disable_runtime_tests = params.get('disable_runtime_tests')
def runtime_sw_cl_names = ['cl_dram_dma', 'cl_hello_world', 'cl_sde']
def dcp_recipe_cl_names = ['cl_dram_dma', 'cl_hello_world']
def dcp_recipe_scenarios = [
// Default values are tested in FDF: A0-B0-C0-DEFAULT
// Fastest clock speeds are: A1-B2-C0
// Test each clock recipe with the BASIC strategy
// Test all strategies with highest clock speeds
'A1-B1-C1-BASIC',
'A1-B2-C0-BASIC',
'A2-B3-C2-BASIC',
'A1-B4-C3-BASIC',
'A1-B5-C0-BASIC',
'A1-B2-C0-DEFAULT',
'A1-B2-C0-EXPLORE',
'A1-B2-C0-TIMING',
'A1-B2-C0-TIMING',
'A1-B2-C0-CONGESTION',
]
def fdf_test_names = [
'cl_dram_dma[A1-B0-C0-DEFAULT]',
'cl_hello_world[A0-B0-C0-DEFAULT]',
'cl_hello_world_vhdl',
'cl_sde[A0-B0-C0-DEFAULT]',
'cl_uram_example[2]',
'cl_uram_example[3]',
'cl_uram_example[4]'
]
boolean debug_dcp_gen = params.get('debug_dcp_gen')
if (debug_dcp_gen) {
fdf_test_names = ['cl_sde[A0-B0-C0-DEFAULT]']
test_markdown_links = false
test_sims = false
test_runtime_software = false
test_sdaccel_scripts = false
}
boolean debug_fdf_uram = params.get('debug_fdf_uram')
if (debug_fdf_uram) {
fdf_test_names = ['cl_uram_example[2]', 'cl_uram_example[3]', 'cl_uram_example[4]']
test_markdown_links = false
test_sims = false
test_runtime_software = false
test_sdaccel_scripts = false
}
boolean fdf_ddr_comb = params.get('fdf_ddr_comb')
if(fdf_ddr_comb) {
fdf_test_names = ['cl_dram_dma[A0-B0-C0-DEFAULT-111]', 'cl_dram_dma[A0-B0-C0-DEFAULT-110]', 'cl_dram_dma[A0-B0-C0-DEFAULT-101]','cl_dram_dma[A0-B0-C0-DEFAULT-100]','cl_dram_dma[A0-B0-C0-DEFAULT-011]','cl_dram_dma[A0-B0-C0-DEFAULT-010]','cl_dram_dma[A0-B0-C0-DEFAULT-001]','cl_dram_dma[A0-B0-C0-DEFAULT-000]']
test_markdown_links = false
test_sims = false
test_runtime_software = false
test_sdaccel_scripts = false
}
//=============================================================================
// Globals
//=============================================================================
// Map that contains stages of tests
def all_tests = [:]
// Task to Label map
task_label = [
'create_afi': 't2.l_50',
'simulation': 'z1d.l',
'dcp_gen': 'z1d.2xl',
'runtime': 'f1.2xl',
'runtime_all_slots': 'f1.16xl',
'source_scripts': 'c4.xl',
'md_links': 'c4.xl',
'find_tests': 't2.l_50',
'sdaccel_builds': 'z1d.2xl'
]
// Put the latest version last
def xilinx_versions = [ '2021.2' ]
def vitis_versions = ['2021.2' ]
// We want the default to be the latest.
def default_xilinx_version = xilinx_versions.last()
def xsa_map = [
'2020.2' : [ 'DYNAMIC':'dyn'],
'2021.1' : [ 'DYNAMIC':'dyn'],
'2021.2' : [ 'DYNAMIC':'dyn']
]
def vitis_example_default_map = [
'2020.1' : [
'Hello_World_1ddr': 'Vitis/examples/xilinx/ocl_kernels/cl_helloworld',
'Gmem_2Banks_2ddr': 'Vitis/examples/xilinx/ocl_kernels/cl_gmem_2banks',
'Kernel_Global_Bw_4ddr': 'Vitis/examples/xilinx/cpp_kernels/kernel_global_bandwidth',
'RTL_Vadd_Debug': 'Vitis/examples/xilinx/rtl_kernels/rtl_vadd_hw_debug',
'gemm_blas': 'Vitis/examples/xilinx/library_examples/gemm',
'gzip_app': 'Vitis/examples/xilinx/library_examples/gzip_app'
],
'2020.2' : [
'Hello_World_1ddr': 'Vitis/examples/xilinx/ocl_kernels/cl_helloworld',
'Gmem_2Banks_2ddr': 'Vitis/examples/xilinx/ocl_kernels/cl_gmem_2banks',
'Kernel_Global_Bw_4ddr': 'Vitis/examples/xilinx/cpp_kernels/kernel_global_bandwidth',
'RTL_Vadd_Debug': 'Vitis/examples/xilinx/rtl_kernels/rtl_vadd_hw_debug',
'gemm_blas': 'Vitis/examples/xilinx/library_examples/gemm',
'gzip_app': 'Vitis/examples/xilinx/library_examples/gzip_app'
],
'2021.1' : [
'Hello_World_1ddr': 'Vitis/examples/xilinx/ocl_kernels/cl_helloworld',
'Gmem_2Banks_2ddr': 'Vitis/examples/xilinx/ocl_kernels/cl_gmem_2banks',
'Kernel_Global_Bw_4ddr': 'Vitis/examples/xilinx/cpp_kernels/kernel_global_bandwidth',
'RTL_Vadd_Debug': 'Vitis/examples/xilinx/rtl_kernels/rtl_vadd_hw_debug',
'gemm_blas': 'Vitis/examples/xilinx/library_examples/gemm'
],
'2021.2' : [
'Hello_World_1ddr': 'Vitis/examples/xilinx/ocl_kernels/cl_helloworld',
'Gmem_2Banks_2ddr': 'Vitis/examples/xilinx/ocl_kernels/cl_gmem_2banks',
'Kernel_Global_Bw_4ddr': 'Vitis/examples/xilinx/performance/kernel_global_bandwidth',
'RTL_Vadd_Debug': 'Vitis/examples/xilinx/rtl_kernels/rtl_vadd_hw_debug'
],
]
def simulator_tool_default_map = [
'2019.1' : [
'vivado': 'xilinx/SDx/2019.1.op2552052',
'vcs': 'synopsys/vcs-mx/N-2017.12-SP2',
'questa': 'questa/10.6c_1',
'ies': 'incisive/15.20.063'
],
'2019.2' : [
'vivado': 'xilinx/Vivado/2019.2',
'vcs': 'synopsys/vcs-mx/O-2018.09-SP2-1',
'questa': 'questa/2019.2',
'ies': 'incisive/15.20.063'
],
'2020.1' : [
'vivado': 'xilinx/Vivado/2020.1',
'vcs': 'synopsys/vcs-mx/P-2019.06-SP1-1',
'questa': 'questa/2019.4',
'ies': 'incisive/15.20.079'
],
'2020.2' : [
'vivado': 'xilinx/Vivado/2020.2',
'vcs': 'synopsys/vcs-mx/Q-2020.03',
'questa': 'questa/2020.2',
'ies': 'incisive/15.20.083'
],
'2021.1' : [
'vivado': 'xilinx/Vivado/2021.1',
'vcs': 'synopsys/vcs-mx/R-2020.12',
'questa': 'questa/2020.4',
'ies': 'incisive/15.20.083'
],
'2021.2' : [
'vivado': 'xilinx/Vivado/2021.2',
'vcs': 'synopsys/vcs-mx/R-2020.12',
'questa': 'questa/2020.4',
'xcelium': '20.09.006'
]
]
// ies 073 is not available for download
// Get serializable entry set
@NonCPS def entrySet(m) {m.collect {k, v -> [key: k, value: v]}}
@NonCPS
def is_public_repo() {
echo "Change URL: ${env.CHANGE_URL}"
return (env.CHANGE_URL =~ /^(\S+)?aws-fpga\/pull\/(\d+)$/)
}
def get_task_label(Map args=[ : ]) {
String task_label = args.xilinx_version + '_' + task_label[args.task]
//boolean use_test_ami = params.get('use_test_ami')
if (params.use_test_ami) {
echo "Test AMI Requested"
task_label = task_label + '_test'
}
if (params.internal_simulations) {
echo "internal simulation agent requested"
task_label = 'f1_3rd_party_sims'
}
echo "Label Requested: $task_label"
return task_label
}
def abort_previous_running_builds() {
def hi = Hudson.instance
def pname = env.JOB_NAME.split('/')[0]
hi.getItem(pname).getItem(env.JOB_BASE_NAME).getBuilds().each{ build ->
def executor = build.getExecutor()
if (build.number != currentBuild.number && build.number < currentBuild.number && executor != null) {
executor.interrupt(
Result.ABORTED,
new CauseOfInterruption.UserInterruption("Aborted by #${currentBuild.number}"))
println("Aborted previous running build #${build.number}")
} else {
println("Build is not running or is current build, not aborting - #${build.number}")
}
}
}
// Wait for input if we are running on a public repo to avoid malicious PRS
if (is_public_repo()) {
input "Running on a public repository, do you want to proceed with running the tests?"
} else {
echo "Running on a private repository"
}
//Abort previous builds on PR when we push new commits
// env.CHANGE_ID is only available on PR's and not on branch builds
if (env.CHANGE_ID) {
abort_previous_running_builds()
}
def run_junit(String report_file) {
if (fileExists(report_file)) {
junit healthScaleFactor: 10.0, testResults: report_file
} else {
echo "Pytest wasn't run for stage. Report file not generated: ${report_file}"
}
}
def git_cleanup() {
sh """
set -e
sudo git reset --hard
sudo git clean -fdx
"""
}
//////////////////////////////////////////////////////
//////////////////////////////////////////////////////
// Test Functions/////////////////////////////////////
//////////////////////////////////////////////////////
//////////////////////////////////////////////////////
def test_run_py_bindings() {
echo "Test Python Bindings"
checkout scm
String test = "sdk/tests/test_py_bindings.py"
String report_file = "test_py_bindings.xml"
try {
sh """
set -e
source $WORKSPACE/shared/tests/bin/setup_test_sdk_env.sh "py_bindings"
python2.7 -m pytest -v $WORKSPACE/${test} --junit-xml $WORKSPACE/${report_file}
"""
} catch (exc) {
echo "${test} failed."
input message: "Python bindings test failed. Click Proceed or Abort when you are done debugging on the instance."
throw exc
} finally {
run_junit(report_file)
}
}
def test_doc_markdown_links() {
String report_file = 'test_md_links.xml'
checkout scm
try {
sh """
set -e
source $WORKSPACE/shared/tests/bin/setup_test_env.sh
python2.7 -m pytest -v $WORKSPACE/shared/tests/test_md_links.py --junit-xml $WORKSPACE/${report_file}
"""
} finally {
run_junit(report_file)
}
}
def test_doc_src_headers() {
String report_file = 'test_check_src_headers.xml'
checkout scm
try {
sh """
set -e
source $WORKSPACE/shared/tests/bin/setup_test_env.sh
python2.7 -m pytest -v $WORKSPACE/shared/tests/test_check_src_headers.py --junit-xml $WORKSPACE/${report_file}
"""
} finally {
run_junit(report_file)
}
}
def test_run_hdk_scripts() {
checkout scm
String report_file = 'test_hdk_scripts.xml'
try {
sh """
set -e
source $WORKSPACE/shared/tests/bin/setup_test_env.sh
python2.7 -m pytest -v $WORKSPACE/hdk/tests/test_hdk_scripts.py --junit-xml $WORKSPACE/${report_file}
"""
} finally {
run_junit(report_file)
}
}
def test_fpga_1_slot() {
String report_file_tools = 'test_fpga_tools.xml'
String report_file_sdk = 'test_fpga_sdk.xml'
String report_file_combined = 'test_fpga_*.xml'
checkout scm
try {
sh """
set -e
source $WORKSPACE/shared/tests/bin/setup_test_sdk_env.sh
python2.7 -m pytest -v $WORKSPACE/sdk/tests/test_fpga_tools.py --junit-xml $WORKSPACE/${report_file_tools}
sudo -E sh -c 'source $WORKSPACE/shared/tests/bin/setup_test_sdk_env.sh && python2.7 -m pytest -v $WORKSPACE/sdk/tests/test_sdk.py --junit-xml $WORKSPACE/${report_file_sdk}'
sudo -E chmod 666 $WORKSPACE/${report_file_sdk}
"""
}
catch (exception) {
echo "Test FPGA Tools 1 Slot failed"
input message: "1 slot FPGA Tools test failed. Click Proceed or Abort when you are done debugging on the instance."
throw exception
}
finally {
if (fileExists(report_file_tools)) {
junit healthScaleFactor: 10.0, testResults: report_file_combined
} else {
echo "Pytest wasn't run for stage. Report file not generated: ${report_file_combined}"
}
}
}
def test_fpga_all_slots() {
String report_file_tools = 'test_fpga_tools_all_slots.xml'
String report_file_sdk = 'test_fpga_sdk_all_slots.xml'
String report_file_combined = 'test_fpga_*_all_slots.xml'
checkout scm
try {
sh """
set -e
source $WORKSPACE/shared/tests/bin/setup_test_sdk_env.sh
python2.7 -m pytest -v $WORKSPACE/sdk/tests/test_fpga_tools.py --junit-xml $WORKSPACE/${report_file_tools}
sudo -E sh -c 'source $WORKSPACE/shared/tests/bin/setup_test_sdk_env.sh && python2.7 -m pytest -v $WORKSPACE/sdk/tests/test_sdk.py --junit-xml $WORKSPACE/${report_file_sdk}'
sudo -E chmod 666 $WORKSPACE/${report_file_sdk}
"""
}
catch (exception) {
echo "Test FPGA Tools All Slots failed"
input message: "All slot FPGA Tools test failed. Click Proceed or Abort when you are done debugging on the instance."
throw exception
}
finally {
if (fileExists(report_file_tools)) {
junit healthScaleFactor: 10.0, testResults: report_file_combined
} else {
echo "Pytest wasn't run for stage. Report file not generated: ${report_file_combined}"
}
}
}
def test_run_non_root_access() {
echo "Test non-root access to FPGA tools"
checkout scm
String test = "sdk/tests/test_non_root_access.py"
String report_file = "test_non_root_access.xml"
try {
sh """
set -e
export AWS_FPGA_ALLOW_NON_ROOT=y
export AWS_FPGA_SDK_OVERRIDE_GROUP=y
source $WORKSPACE/shared/tests/bin/setup_test_sdk_env.sh
newgrp fpgauser
export SDK_DIR="${WORKSPACE}/sdk"
python2.7 -m pytest -v $WORKSPACE/${test} --junit-xml $WORKSPACE/${report_file}
"""
} catch (exc) {
input message: "Non-root access test failed. Click Proceed or Abort when you are done debugging on the instance."
throw exc
} finally {
run_junit(report_file)
}
}
def test_xdma_driver() {
echo "Test XDMA Driver"
checkout scm
String test = "sdk/tests/test_xdma.py"
String report_file = "test_xdma.xml"
try {
sh """
set -e
source $WORKSPACE/shared/tests/bin/setup_test_sdk_env.sh
python2.7 -m pytest -v ${test} --junit-xml $WORKSPACE/${report_file}
"""
} catch (exc) {
echo "${test} failed."
junit healthScaleFactor: 10.0, testResults: report_file
input message: "XDMA driver test failed. Click Proceed or Abort when you are done debugging on the instance."
throw exc
} finally {
run_junit(report_file)
}
}
//=============================================================================
// Shared Tests
//=============================================================================
if (test_markdown_links || test_src_headers) {
all_tests['Documentation Tests'] = {
node(get_task_label(task: 'md_links', xilinx_version: default_xilinx_version)) {
if (test_markdown_links) {
stage('Test Markdown Links') {
test_doc_markdown_links()
}
}
if (test_src_headers) {
stage('Test Source Headers') {
test_doc_src_headers()
}
}
}
}
}
//=============================================================================
// HDK Tests
//=============================================================================
if (test_hdk_scripts) {
all_tests['Test HDK Scripts'] = {
stage('Test HDK Scripts') {
node(get_task_label(task: 'source_scripts', xilinx_version: default_xilinx_version)) {
test_run_hdk_scripts()
}
}
}
}
//=============================================================================
// FPGA Tool Tests
//=============================================================================
if (test_fpga_tools) {
all_tests['Test FPGA Tools 1 Slot'] = {
stage('Test FPGA Tools 1 Slot') {
node(get_task_label(task: 'runtime', xilinx_version: default_xilinx_version)) {
test_fpga_1_slot()
}
}
}
all_tests['Test FPGA Tools All Slots'] = {
stage('Test FPGA Tools All Slots') {
node(get_task_label(task: 'runtime_all_slots', xilinx_version: default_xilinx_version)) {
test_fpga_all_slots()
}
}
}
}
//=============================================================================
// Simulations
//=============================================================================
if (test_sims) {
all_tests['Run Sims'] = {
stage('Run Sims') {
def cl_names = ['cl_vhdl_hello_world', 'cl_uram_example', 'cl_dram_dma', 'cl_hello_world', 'cl_sde']
def simulators = ['vivado']
def sim_nodes = [:]
if(params.internal_simulations) {
simulators = ['vcs', 'ies', 'questa', 'vivado']
}
for (x in cl_names) {
for (y in xilinx_versions) {
for (z in simulators) {
String xilinx_version = y
String cl_name = x
String simulator = z
if((cl_name == 'cl_vhdl_hello_world') && (simulator == 'ies')) {
println ("Skipping Simulator: ${simulator} CL: ${cl_name}")
continue;
}
String cl_dir_name = cl_name
if(cl_name == 'cl_vhdl_hello_world') {
cl_dir_name = "cl_hello_world_vhdl"
}
String node_name = "Sim ${cl_name} ${xilinx_version} ${simulator}"
String key = "test_${cl_name}__"
String report_file = "test_sims_${cl_name}_${xilinx_version}.xml"
def tool_module_map = simulator_tool_default_map.get(xilinx_version)
String vcs_module = tool_module_map.get('vcs')
String questa_module = tool_module_map.get('questa')
String ies_module = tool_module_map.get('ies')
String vivado_module = tool_module_map.get('vivado')
if(params.internal_simulations) {
report_file = "test_sims_${cl_name}_${xilinx_version}_${simulator}.xml"
}
sim_nodes[node_name] = {
node(get_task_label(task: 'simulation', xilinx_version: xilinx_version)) {
checkout scm
try {
if(params.internal_simulations) {
sh """
set -e
module purge
module load python/3.7.2
module load python/2.7.14
module load batch
module load ${vivado_module}
module load ${vcs_module}
module load ${questa_module}
module load ${ies_module}
source $WORKSPACE/hdk_setup.sh
python2.7 -m pytest -v $WORKSPACE/hdk/tests/simulation_tests/test_sims.py -k \"${key}\" --junit-xml $WORKSPACE/${report_file} --simulator ${simulator} --batch 'TRUE'
"""
} else {
sh """
set -e
source $WORKSPACE/shared/tests/bin/setup_test_hdk_env.sh
python2.7 -m pytest -v $WORKSPACE/hdk/tests/simulation_tests/test_sims.py -k \"${key}\" --junit-xml $WORKSPACE/${report_file} --simulator ${simulator} --batch 'FALSE'
"""
}
} catch (exc) {
echo "${node_name} failed"
throw exc
} finally {
run_junit(report_file)
archiveArtifacts artifacts: "hdk/cl/examples/${cl_dir_name}/**/*.sim.log", fingerprint: true
}
}
}
}
}
}
parallel sim_nodes
}
}
}
//=============================================================================
// Non root access Test
//=============================================================================
if (test_non_root_access) {
all_tests['Test non-root access to FPGA tools'] = {
stage('Test non-root access to FPGA tools') {
node(get_task_label(task: 'runtime', xilinx_version: default_xilinx_version)) {
test_run_non_root_access()
}
}
}
}
//=============================================================================
// Driver Tests
//=============================================================================
if (test_xdma) {
all_tests['Test XDMA Driver'] = {
stage('Test XDMA Driver') {
node(get_task_label(task: 'runtime', xilinx_version: default_xilinx_version)) {
test_xdma_driver()
}
}
}
}
//=============================================================================
// Python Binding Test
//=============================================================================
// if (test_py_bindings) {
// all_tests['Test Python Bindings'] = {
// stage('Test Python Bindings') {
// node('f1.2xl_runtime_test_al2') {
// test_run_py_bindings()
// }
// }
// }
// }
//=============================================================================
// Precompiled Runtime Tests
//=============================================================================
if(disable_runtime_tests) {
echo "Runtime tests disabled. Not running Test Runtime Software stages"
} else {
if (test_runtime_software) {
all_tests['Test Runtime Software'] = {
stage('Test Runtime Software') {
def nodes = [:]
def node_types = ['runtime', 'runtime_all_slots']
for (n in node_types) {
node_type = n
for (x in runtime_sw_cl_names) {
String cl_name = x
String node_name = "Undefined"
switch (node_type) {
case "runtime":
node_name = "Test Runtime Software ${default_xilinx_version} f1.2xl ${cl_name}"
break;
case "runtime_all_slots":
node_name = "Test Runtime Software ${default_xilinx_version} f1.16xl ${cl_name}"
break;
}
String node_label = get_task_label(task: node_type, xilinx_version: default_xilinx_version)
nodes[node_name] = {
node(node_label) {
String test = "hdk/tests/test_load_afi.py::TestLoadAfi::test_precompiled_${cl_name}"
String report_file = "test_runtime_software_${cl_name}.xml"
checkout scm
try {
sh """
set -e
source $WORKSPACE/shared/tests/bin/setup_test_sdk_env.sh
python2.7 -m pytest -v ${test} --junit-xml $WORKSPACE/${report_file}
"""
} finally {
run_junit(report_file)
}
}
}
}
}
parallel nodes
}
}
}
}
//=============================================================================
// DCP Recipe Tests
//=============================================================================
if (test_dcp_recipes) {
all_tests['Test DCP Recipes'] = {
stage('Test DCP Recipes') {
def nodes = [:]
for (version in xilinx_versions) {
String xilinx_version = version
for (cl in dcp_recipe_cl_names) {
String cl_name = cl
for (s in dcp_recipe_scenarios) {
String recipe_scenario = s
String node_name = "Test DCP Recipe ${cl_name}[${xilinx_version}-${recipe_scenario}]"
nodes[node_name] = {
node(get_task_label(task: 'dcp_gen', xilinx_version: xilinx_version)) {
String test_name = "test_${cl_name}[${xilinx_version}-${recipe_scenario}]"
String report_file = "test_dcp_recipe_${cl_name}[${xilinx_version}-${recipe_scenario}].xml"
String build_dir = "hdk/cl/examples/${cl_name}/build"
checkout scm
try {
sh """
set -e
source $WORKSPACE/shared/tests/bin/setup_test_hdk_env.sh
python2.7 -m pytest -s -v hdk/tests/test_gen_dcp.py::TestGenDcp::${test_name} --junit-xml $WORKSPACE/${report_file} --xilinxVersion ${xilinx_version}
"""
} catch(exc) {
echo "${test_name} DCP generation failed: archiving results"
archiveArtifacts artifacts: "${build_dir}/**", fingerprint: true
throw exc
} finally {
run_junit(report_file)
}
}
}
}
}
}
parallel nodes
}
}
}
//=============================================================================
// HDK Full Developer Flow Tests
//=============================================================================
if (test_hdk_fdf) {
// Top level stage for FDF
// Each CL will have its own parallel FDF stage under this one.
all_tests['HDK_FDF'] = {
stage('HDK FDF') {
def fdf_stages = [:]
for (version in xilinx_versions) {
String xilinx_version = version
for (x in fdf_test_names) {
String fdf_test_name = x
String cl_name = ""
if (fdf_test_name.contains('[')) {
def split_test = fdf_test_name.split(/\[/)
def test_base_name = split_test[0]
def test_args = split_test[1]
fdf_test_name = "$test_base_name[$xilinx_version-$test_args"
cl_name = test_base_name
}
String fdf_stage_name = "FDF ${xilinx_version} ${fdf_test_name}"
fdf_stages[fdf_stage_name] = {
stage(fdf_stage_name) {
echo "Generate DCP for ${xilinx_version} ${fdf_test_name}"
String build_dir = "hdk/cl/examples/${cl_name}/build"
String dcp_stash_name = "dcp_tarball_${fdf_test_name}_${xilinx_version}".replaceAll(/[\[\]]/, "_")
String dcp_stash_dir = "${build_dir}/checkpoints/to_aws"
String afi_stash_name = "afi_${fdf_test_name}_${xilinx_version}".replaceAll(/[\[\]]/, "_")
String afi_stash_dir = "${build_dir}/create_afi"
echo "dcp_stash_name=${dcp_stash_name}"
echo "afi_stash_name=$afi_stash_name}"
node(get_task_label(task: 'dcp_gen', xilinx_version: xilinx_version)) {
String test = "hdk/tests/test_gen_dcp.py::TestGenDcp::test_${fdf_test_name}"
String report_file = "test_dcp_${fdf_test_name}_${xilinx_version}.xml"
checkout scm
// Clean out the to_aws directory to make sure there are no artifacts left over from a previous build
try {
sh """
rm -rf ${dcp_stash_dir}
"""
} catch(exc) {
// Ignore any errors
echo "Failed to clean ${dcp_stash_dir}"
}
try {
sh """
set -e
source $WORKSPACE/shared/tests/bin/setup_test_hdk_env.sh
python2.7 -m pytest -v ${test} --junit-xml $WORKSPACE/${report_file} --xilinxVersion ${xilinx_version}
"""
} catch (exc) {
echo "${fdf_test_name} DCP generation failed: archiving results"
archiveArtifacts artifacts: "${build_dir}/**", fingerprint: true
throw exc
} finally {
run_junit(report_file)
}
try {
stash name: dcp_stash_name, includes: "${dcp_stash_dir}/**"
} catch (exc) {
echo "stash ${dcp_stash_name} failed:\n${exc}"
}
}
node(get_task_label(task: 'create_afi', xilinx_version: xilinx_version)) {
echo "Generate AFI for ${xilinx_version} ${fdf_test_name}"
checkout scm
String test = "hdk/tests/test_create_afi.py::TestCreateAfi::test_${fdf_test_name}"
String report_file = "test_create_afi_${fdf_test_name}_${xilinx_version}.xml"
// Clean out the stash directories to make sure there are no artifacts left over from a previous build
try {
sh """
rm -rf ${dcp_stash_dir}
"""
} catch(exc) {
// Ignore any errors
echo "Failed to clean ${dcp_stash_dir}"
}
try {
sh """
rm -rf ${afi_stash_dir}
"""
} catch(exc) {
// Ignore any errors
echo "Failed to clean ${afi_stash_dir}"
}
try {
unstash name: dcp_stash_name
} catch (exc) {
echo "unstash ${dcp_stash_name} failed:\n${exc}"
//throw exc
}
try {
// There is a Xilinx bug that causes the following error during hdk_setup.sh if multiple
// processes are doing it at the same time:
// WARNING: [Common 17-1221] Tcl app 'xsim' is out of date for this release. Please run tclapp::reset_tclstore and reinstall the app.
// ERROR: [Common 17-685] Unable to load Tcl app xilinx::xsim
// ERROR: [Common 17-69] Command failed: ERROR: [Common 17-685] Unable to load Tcl app xilinx::xsim
sh """
set -e
source $WORKSPACE/shared/tests/bin/setup_test_env.sh
python2.7 -m pytest -v ${test} --junit-xml $WORKSPACE/${report_file} --xilinxVersion ${xilinx_version}
"""
} catch (exc) {
echo "${fdf_test_name} AFI generation failed: archiving results"
archiveArtifacts artifacts: "${build_dir}/to_aws/**", fingerprint: true
throw exc
} finally {
run_junit(report_file)
}
try {
stash name: afi_stash_name, includes: "${afi_stash_dir}/**"
} catch (exc) {
echo "stash ${afi_stash_name} failed:\n${exc}"
}
}
if(disable_runtime_tests) {
echo "Runtime tests disabled. Not running runtime ${fdf_test_name}"
} else {
node(get_task_label(task: 'runtime', xilinx_version: xilinx_version)) {
String test = "hdk/tests/test_load_afi.py::TestLoadAfi::test_${fdf_test_name}"
String report_file = "test_load_afi_${fdf_test_name}_${xilinx_version}.xml"
checkout scm
echo "Test AFI for ${xilinx_version} ${fdf_test_name} on F1 instance"
// Clean out the stash directories to make sure there are no artifacts left over from a previous build
try {
sh """
rm -rf ${afi_stash_dir}
"""
} catch(exc) {
// Ignore any errors
echo "Failed to clean ${afi_stash_dir}"
}
try {
unstash name: afi_stash_name
} catch (exc) {
echo "unstash ${afi_stash_name} failed:\n${exc}"
}
try {
sh """
set -e
source $WORKSPACE/shared/tests/bin/setup_test_sdk_env.sh
python2.7 -m pytest -v ${test} --junit-xml $WORKSPACE/${report_file} --xilinxVersion ${xilinx_version}
"""
} finally {
run_junit(report_file)
}
}
} //else
} // stage(
}
} // for (x in fdf_test_names)
} // for (xilinx_version in xilinx_versions) {
parallel fdf_stages
}
}
}
//=============================================================================
// Vitis Tests
//=============================================================================
if (test_helloworld_vitis_example_fdf || test_all_vitis_examples_fdf) {
all_tests['Run Vitis Tests'] = {
String vitis_examples_list = 'vitis_examples_list.json'
def vitis_all_version_stages = [:]
for (def version in vitis_versions) {
String xilinx_version = version
String vitis_base_stage_name = "Vitis FDF $xilinx_version"
String vitis_find_stage_name = "Vitis Find tests $xilinx_version"
vitis_all_version_stages[vitis_base_stage_name] = {
stage (vitis_find_stage_name) {
node(get_task_label(task: 'find_tests', xilinx_version: xilinx_version)) {
checkout scm
String report_file = "test_find_vitis_examples_${xilinx_version}.xml"
try {
sh """
rm -rf ${vitis_examples_list}
"""
} catch(error) {
// Ignore any errors
echo "Failed to clean ${vitis_examples_list}"
}
try {
sh """
set -e
source $WORKSPACE/shared/tests/bin/setup_test_build_vitis_env.sh
python2.7 -m pytest -v $WORKSPACE/Vitis/tests/test_find_vitis_examples.py --junit-xml $WORKSPACE/${report_file} --xilinxVersion ${xilinx_version}
"""
} catch (exc) {
echo "Could not find tests. Please check the repository."
throw exc
} finally {
run_junit(report_file)
archiveArtifacts artifacts: "${vitis_examples_list}.*", fingerprint: true
}
def example_map = vitis_example_default_map.get(xilinx_version)
// Run all examples when parameter set
if (test_all_vitis_examples_fdf) {
example_map = readJSON file: vitis_examples_list
}
def vitis_build_stages = [:]
for ( def e in entrySet(example_map) ) {
String test_key = e.key
def xsa_map_for_version = xsa_map.get(xilinx_version)
// dsa = [ 4DDR: 4ddr ]
for ( def dsa in entrySet(xsa_map_for_version) ) {
String build_name = "Vitis ${e.key}_${dsa.value}_${xilinx_version}"
String example_path = e.value
String dsa_name = dsa.key
String dsa_rte_name = dsa.value
String sw_emu_stage_name = "Vitis SW_EMU ${build_name}"
String hw_emu_stage_name = "Vitis HW_EMU ${build_name}"
String hw_stage_name = "Vitis HW ${build_name}"
String create_afi_stage_name = "Vitis AFI ${build_name}"
String run_example_stage_name = "Vitis RUN ${build_name}"
String sw_emu_report_file = "vitis_sw_emu_${e.key}_${dsa.value}_${xilinx_version}.xml"
String hw_emu_report_file = "vitis_hw_emu_${e.key}_${dsa.value}_${xilinx_version}.xml"
String hw_report_file = "vitis_hw_${e.key}_${dsa.value}_${xilinx_version}.xml"
String create_afi_report_file = "vitis_create_afi_${e.key}_${dsa.value}_${xilinx_version}.xml"
String run_example_report_file = "vitis_run_${e.key}_${dsa.value}_${xilinx_version}.xml"
String description_file = "${example_path}/description.json"
def description_json = ["targets":["hw","hw_emu","sw_emu"]]
try {
description_json = readJSON file: description_file
}
catch (exc) {
echo "Could not read the file: ${description_file}"
throw exc
}
boolean test_sw_emu_supported = false
boolean test_hw_emu_supported = false