@@ -39,7 +39,7 @@ stage("Build Toolbox") {
39
39
40
40
// ///////////////////////////////////////////////////
41
41
42
- boardNames = [' daq2' ,' ad9081' ,' ad9434' ,' ad9739a' ,' ad9265' , ' fmcjesdadc1' ,' ad9783' , ' ad9208 ' ]
42
+ boardNames = [' daq2' ,' ad9081' ,' ad9434' ,' ad9739a' ,' ad9265' , ' fmcjesdadc1' ,' ad9783' ]
43
43
dockerConfig. add(" -e HDLBRANCH=hdl_2021_r2" )
44
44
45
45
cstage(" HDL Tests" , " " , flags) {
@@ -64,6 +64,32 @@ cstage("HDL Tests", "", flags) {
64
64
65
65
// ///////////////////////////////////////////////////
66
66
67
+ def deployments = [:];
68
+ def board = ' ad9208' ;
69
+ def nodeLabel = ' baremetal && high_memory' ;
70
+ deployments[board] = { node(nodeLabel) {
71
+ cstage(" Baremetal HDL Test" , " " , flags) {
72
+ withEnv([' BOARD=' + board,' MLRELEASE=R2022b' ,' HDLBRANCH=hdl_2021_r2' ,' LC_ALL=C.UTF-8' ,' LANG=C.UTF-8' ]) {
73
+ try {
74
+ cstage(" AD9208 HDL Test" , " " , flags) {
75
+ echo " Node: ${ env.NODE_NAME} "
76
+ unstash " builtSources"
77
+ sh ' make -C ./CI/scripts test'
78
+ junit testResults : ' test/*.xml' , allowEmptyResults : true
79
+ archiveArtifacts artifacts : ' test/logs/*' , followSymlinks : false , allowEmptyArchive : true
80
+ }
81
+ }
82
+ finally {
83
+ cleanWs();
84
+ }
85
+ }
86
+ }
87
+ }}
88
+
89
+ parallel deployments
90
+
91
+ // ///////////////////////////////////////////////////
92
+
67
93
boardNames = [' NonHW' ]
68
94
69
95
cstage(" NonHW Tests" , " " , flags) {
0 commit comments