Skip to content

Commit

Permalink
Use release image
Browse files Browse the repository at this point in the history
Signed-off-by: Julia Pineda <[email protected]>
  • Loading branch information
jpineda3 committed Sep 29, 2023
1 parent c970058 commit b5dc22f
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions JenkinsfileHW
Original file line number Diff line number Diff line change
@@ -1,23 +1,30 @@
node('sdg-nuc-01'){
sh 'rm /lib/x86_64-linux-gnu/libiio.so* || true'
}
node('sdg-nuc-02'){
sh 'rm /lib/x86_64-linux-gnu/libiio.so* || true'
}

// Pipeline
lock(label: 'adgt_test_harness_boards') {
@Library('sdgtt-lib@adgt-test-harness') _ // Not necessary when we turn on global libraries :)
def hdlBranch = "NA"
def linuxBranch = "NA"
def bootPartitionBranch = "master" // Workaround changes in Artifactory folder structure, master unaffected (HTH-475)
def bootPartitionBranch = "2021_r2"
def firmwareVersion = 'v0.34'
def bootfile_source = 'artifactory' // options: sftp, artifactory, http, local
def harness = getGauntlet(hdlBranch, linuxBranch, bootPartitionBranch, firmwareVersion, bootfile_source)

//Update repos
harness.set_env('nebula_repo', 'https://github.com/sdgtt/nebula.git')
harness.set_env('nebula_branch','dev')
harness.set_env('nebula_config_branch','master')
// harness.set_env('libiio_branch', 'v0.23')
harness.set_env('nebula_config_branch','release')
harness.set_env('libiio_branch', 'v0.25')
// harness.set_env('telemetry_repo', 'https://github.com/sdgtt/telemetry.git')
// harness.set_env('telemetry_branch', 'master')
harness.set_env('matlab_repo', 'https://github.com/analogdevicesinc/TransceiverToolbox.git') // Not necessary when using checkout scm
harness.set_env('matlab_release','R2022b')
harness.set_matlab_timeout('5m')
harness.set_matlab_timeout('8m')

//Update nebula config from netbox
harness.set_update_nebula_config(true)
Expand All @@ -44,14 +51,18 @@ lock(label: 'adgt_test_harness_boards') {
harness.set_lock_agent(true) // Required for MATLAB toolbox tests
harness.set_elastic_server('192.168.10.1')
harness.set_required_hardware(["zynq-zed-adv7511-adrv9002-vcmos",
"zynq-zed-adv7511-adrv9002-rx2tx2-vcmos",
"zynqmp-zcu102-rev10-adrv9002-vcmos",
"zynqmp-zcu102-rev10-adrv9002-rx2tx2-vcmos",
"zynqmp-zcu102-rev10-adrv9002-rx2tx2-vlvds",
"pluto",
"zynq-adrv9361-z7035-fmc",
"zynq-zed-adv7511-ad9364-fmcomms4",
"zynq-zed-adv7511-ad9361-fmcomms2-3",
"zynq-zc706-adv7511-ad9361-fmcomms5",
"zynq-zc702-adv7511-ad9361-fmcomms2-3",
"zynq-adrv9364-z7020-bob-vcmos"])
"zynq-adrv9364-z7020-bob-vcmos",
"zynq-adrv9364-z7020-bob-vlvds"])
harness.set_docker_args(['Vivado', 'MATLAB'])
harness.set_nebula_local_fs_source_root("artifactory.analog.com")

Expand All @@ -72,4 +83,4 @@ lock(label: 'adgt_test_harness_boards') {

// Go go
harness.run_stages()
}
}

0 comments on commit b5dc22f

Please sign in to comment.