Skip to content

Commit 1de24f5

Browse files
authored
Update to R2022b installation (#152)
Signed-off-by: Julia Pineda <Julia.Pineda@analog.com>
1 parent bc389db commit 1de24f5

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

JenkinsfileHW

+11-8
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,31 @@ lock(label: 'adgt_test_harness_boards') {
33
@Library('sdgtt-lib@adgt-test-harness') _ // Not necessary when we turn on global libraries :)
44
def hdlBranch = "NA"
55
def linuxBranch = "NA"
6-
def bootPartitionBranch = "release"
6+
def bootPartitionBranch = "master" // Workaround changes in Artifactory folder structure, master unaffected (HTH-475)
77
def firmwareVersion = 'v0.34'
88
def bootfile_source = 'artifactory' // options: sftp, artifactory, http, local
99
def harness = getGauntlet(hdlBranch, linuxBranch, bootPartitionBranch, firmwareVersion, bootfile_source)
10-
11-
//Udpate repos
10+
11+
//Update repos
1212
harness.set_env('nebula_repo', 'https://github.com/sdgtt/nebula.git')
1313
harness.set_env('nebula_branch','dev')
14-
harness.set_env('nebula_config_branch','release')
15-
harness.set_env('libiio_branch', 'v0.23')
16-
harness.set_env('telemetry_repo', 'https://github.com/sdgtt/telemetry.git')
17-
harness.set_env('telemetry_branch', 'master')
14+
harness.set_env('nebula_config_branch','master')
15+
// harness.set_env('libiio_branch', 'v0.23')
16+
// harness.set_env('telemetry_repo', 'https://github.com/sdgtt/telemetry.git')
17+
// harness.set_env('telemetry_branch', 'master')
1818
harness.set_env('matlab_repo', 'https://github.com/analogdevicesinc/TransceiverToolbox.git') // Not necessary when using checkout scm
1919
harness.set_env('matlab_release','R2022b')
20+
harness.set_matlab_timeout('5m')
2021

2122
//Update nebula config from netbox
2223
harness.set_update_nebula_config(true)
2324
harness.set_env('nebula_config_source','netbox')
2425
harness.set_env('netbox_ip','primary.englab')
2526
harness.set_env('netbox_port','8000')
2627
harness.set_env('netbox_base_url','netbox')
27-
harness.set_env('netbox_token','0123456789abcdef0123456789abcdef01234567')
28+
withCredentials([string(credentialsId: 'netbox_token', variable: 'TOKEN')]) {
29+
harness.set_env('netbox_token', TOKEN)
30+
}
2831
harness.set_env('netbox_devices_tag','active')
2932

3033
//Update agent with required deps

0 commit comments

Comments
 (0)