Skip to content

Commit 3e4d05d

Browse files
authored
Merge pull request #149 from analogdevicesinc/ad9208_jenkins_update
2 parents 5a87f47 + 14a5471 commit 3e4d05d

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

Jenkinsfile

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ stage("Build Toolbox") {
3939

4040
/////////////////////////////////////////////////////
4141

42-
boardNames = ['daq2','ad9081','ad9434','ad9739a','ad9265', 'fmcjesdadc1','ad9783','ad9208']
42+
boardNames = ['daq2','ad9081','ad9434','ad9739a','ad9265', 'fmcjesdadc1','ad9783']
4343
dockerConfig.add("-e HDLBRANCH=hdl_2021_r2")
4444

4545
cstage("HDL Tests", "", flags) {
@@ -64,6 +64,32 @@ cstage("HDL Tests", "", flags) {
6464

6565
/////////////////////////////////////////////////////
6666

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+
6793
boardNames = ['NonHW']
6894

6995
cstage("NonHW Tests", "", flags) {

0 commit comments

Comments
 (0)