-
Notifications
You must be signed in to change notification settings - Fork 2
/
JenkinsfileHW
49 lines (42 loc) · 2.03 KB
/
JenkinsfileHW
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Pipeline
lock(label: 'adgt_test_harness_boards') {
@Library('sdgtt-lib@rpi-support') _ // Not necessary when we turn on global libraries :)
def hdlBranch = "NA"
def linuxBranch = "NA"
def bootPartitionBranch = "release"
def bootfile_source = 'artifactory' // options: sftp, artifactory, http, local
def harness = getGauntlet(hdlBranch, linuxBranch, bootPartitionBranch, firmwareVersion, bootfile_source)
//Udpate repos
harness.set_env('nebula_repo', 'https://github.com/sdgtt/nebula.git')
harness.set_env('nebula_branch','rpi-support')
harness.set_env('nebula_config_branch','rpi-support')
harness.set_env('libiio_branch', 'v0.23')
harness.set_env('telemetry_repo', 'https://github.com/sdgtt/telemetry.git')
harness.set_env('telemetry_branch', 'master')
harness.set_env('matlab_release','R2021b')
//Update agent with required deps
harness.set_required_agent(["sdg-nuc-01"])
harness.update_agents()
//Set other test parameters
harness.set_nebula_debug(true)
harness.set_enable_docker(true)
harness.set_docker_host_mode(false)
harness.set_send_telemetry(false)
harness.set_enable_resource_queuing(true)
harness.set_lock_agent(true) // Required for MATLAB toolbox tests
harness.set_elastic_server('192.168.10.1')
harness.set_required_hardware(["adis16480bmlz"])
harness.set_docker_args(['Vivado', 'MATLAB'])
harness.set_nebula_local_fs_source_root("artifactory.analog.com")
// Set stages (Stages are run sequentially on agents.)
// harness.add_stage(harness.stage_library("UpdateBOOTFiles"), 'stopWhenFail',
// harness.stage_library("RecoverBoard"))
// Test stage
harness.set_matlab_commands(["addpath(genpath('test'))",
"runHWTests(getenv('board'))"])
harness.add_stage(harness.stage_library("MATLABTests"),'continueWhenFail')
// Send results
// harness.add_stage(harness.stage_library('SendResults'),'continueWhenFail')
// Go go
harness.run_stages()
}