@@ -3,28 +3,31 @@ lock(label: 'adgt_test_harness_boards') {
3
3
@Library('sdgtt-lib@adgt-test-harness') _ // Not necessary when we turn on global libraries :)
4
4
def hdlBranch = "NA"
5
5
def linuxBranch = "NA"
6
- def bootPartitionBranch = "release"
6
+ def bootPartitionBranch = "master" // Workaround changes in Artifactory folder structure, master unaffected (HTH-475)
7
7
def firmwareVersion = 'v0.34'
8
8
def bootfile_source = 'artifactory' // options: sftp, artifactory, http, local
9
9
def harness = getGauntlet(hdlBranch, linuxBranch, bootPartitionBranch, firmwareVersion, bootfile_source)
10
-
11
- //Udpate repos
10
+
11
+ //Update repos
12
12
harness.set_env('nebula_repo', 'https://github.com/sdgtt/nebula.git')
13
13
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')
18
18
harness.set_env('matlab_repo', 'https://github.com/analogdevicesinc/TransceiverToolbox.git') // Not necessary when using checkout scm
19
19
harness.set_env('matlab_release','R2022b')
20
+ harness.set_matlab_timeout('5m')
20
21
21
22
//Update nebula config from netbox
22
23
harness.set_update_nebula_config(true)
23
24
harness.set_env('nebula_config_source','netbox')
24
25
harness.set_env('netbox_ip','primary.englab')
25
26
harness.set_env('netbox_port','8000')
26
27
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
+ }
28
31
harness.set_env('netbox_devices_tag','active')
29
32
30
33
//Update agent with required deps
0 commit comments