Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use mirrors #154

Merged
merged 3 commits into from
Mar 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions JenkinsfileHW
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
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 :)
Expand All @@ -16,11 +9,12 @@ lock(label: 'adgt_test_harness_boards') {
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('libiio_repo', 'http://gateway.englab:3000/mirrors/libiio.git')
harness.set_env('libiio_branch', 'v0.25')
harness.set_env('nebula_repo', 'http://gateway.englab:3000/mirrors/nebula.git')
harness.set_env('nebula_branch', 'dev')
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_repo', 'http://gateway.englab:3000/mirrors/telemetry.git')
// harness.set_env('telemetry_branch', 'master')
harness.set_env('matlab_repo', 'https://github.com/analogdevicesinc/HighSpeedConverterToolbox.git') // Not necessary when using checkout scm
harness.set_env('matlab_release','R2022b')
Expand All @@ -40,6 +34,8 @@ lock(label: 'adgt_test_harness_boards') {

//Update agent with the required deps
harness.set_required_agent(["sdg-nuc-01","sdg-nuc-02"])
harness.set_env('update_container_lib', true)
harness.set_env('update_lib_requirements', true)
harness.update_agents()

//Set other test parameters
Expand Down
Loading