Skip to content

Commit

Permalink
Merge pull request #79 from sdgtt/adgt-test-harness
Browse files Browse the repository at this point in the history
Updates from GT TH fixes and mods
  • Loading branch information
kimpaller authored Nov 4, 2024
2 parents 82a5fc5 + 763f512 commit 0733303
Show file tree
Hide file tree
Showing 6 changed files with 226 additions and 201 deletions.
3 changes: 0 additions & 3 deletions doc/source/jenkinsfile_conf.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ First, we will discuss the bare minimum requirements or parts for the Jenkinfile
harness.set_enable_docker(true)
harness.set_docker_args(['Vivado']) 

//set resource queuing parameter
harness.set_enable_resource_queuing(true)

//set required hardware
harness.set_required_hardware(["pluto"]) 

Expand Down
16 changes: 0 additions & 16 deletions doc/source/methods.rst
Original file line number Diff line number Diff line change
Expand Up @@ -261,22 +261,6 @@ Sample usage:
harness = getGauntlet()
harness.set_required_hardware(["zynq-zed-adv7511-ad9361-fmcomms2-3", "pluto"])
set_enable_resource_queuing
^^^^^^^^^^^^^^^^^^^^^^^^^^^

Enable resource queuing. Resource queuing is ensuring that each board iso only accessed one at a time. This is helpful when boards have project variants, like adrv9002.
Set to True to enable.

parameter:
* *enable_resource_queuing* - Boolean true to enable

Sample usage:

.. code-block:: groovy
harness = getGauntlet()
harness.set_enable_resource_queuing(True)
IIO URI
-------

Expand Down
7 changes: 1 addition & 6 deletions doc/source/pipeline.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Example Jenkinsfile
lock(label: 'adgt_test_harness_boards'){
@Library('sdgtt-lib@jsl_updates') _ 
//instantiate constructor method
def harness = getGauntlet()
    
Expand All @@ -32,9 +32,6 @@ Example Jenkinsfile
harness.set_enable_docker(true)
harness.set_docker_args(['Vivado']) 

//set resource queuing parameter
harness.set_enable_resource_queuing(true)

//set required hardware
harness.set_required_hardware(["pluto",
"zynq-zed-adv7511-fmcomms2-3",
Expand All @@ -46,5 +43,3 @@ Example Jenkinsfile
// Go go
harness.run_stages()
}


Loading

0 comments on commit 0733303

Please sign in to comment.