Skip to content

Commit

Permalink
Update to Jenkinsfile to build AD9208 design outside docker
Browse files Browse the repository at this point in the history
CI: skip=HDL Tests;skip=NonHW Tests;skip=Hardware Streaming Tests
Signed-off-by: Pagadarai <[email protected]>
  • Loading branch information
SrikanthPagadarai committed Aug 18, 2023
1 parent 811a5a5 commit 14a5471
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,18 +64,14 @@ cstage("HDL Tests", "", flags) {

/////////////////////////////////////////////////////

parallel deployments

/////////////////////////////////////////////////////

def deployments = [:];
def board = 'ad9208';
def nodeLabel = 'baremetal && high_memory';
deployments[board] = { node(nodeLabel) {
cstage("Baremetal HDL Test", "", flags) {
withEnv(['BOARD='+board,'MLRELEASE=R2022b','HDLBRANCH=hdl_2021_r2','LC_ALL=C.UTF-8','LANG=C.UTF-8']) {
try {
stage("AD9208 HDL Test") {
cstage("AD9208 HDL Test", "", flags) {
echo "Node: ${env.NODE_NAME}"
unstash "builtSources"
sh 'make -C ./CI/scripts test'
Expand All @@ -90,6 +86,8 @@ deployments[board] = { node(nodeLabel) {
}
}}

parallel deployments

/////////////////////////////////////////////////////

boardNames = ['NonHW']
Expand Down

0 comments on commit 14a5471

Please sign in to comment.