Skip to content

Commit

Permalink
Cleanup: Fix jenkins node names
Browse files Browse the repository at this point in the history
  • Loading branch information
tcrawley-xilinx authored and sianj-xilinx committed Apr 4, 2024
1 parent 0573f6b commit f3ce2ba
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions scripts/jenkins/ut_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ void doCplanePipeline(List gcovr_options)
'build/**/*.gc*',
'build/gnu_x86_64/tests/onload/cplane_unit',
]
coverage_files['cplane'] = tm.runUnitTest('cplane', 'check:unit:cplane', gcov_paths, true, [], gcovr_options)
coverage_files['cplane'] = tm.runUnitTest('cplane', 'check:unit:cplane', gcov_paths, true, ['unit-test-master'], gcovr_options)
}

void doOOFPipeline(List gcovr_options)
Expand All @@ -53,7 +53,7 @@ void doOOFPipeline(List gcovr_options)
'build/**/*.gc*',
'build/gnu_x86_64/tests/onload/oof/oof_test',
]
coverage_files['oof'] = tm.runUnitTest('oof', 'check:unit:oof', gcov_paths, true, [], gcovr_options)
coverage_files['oof'] = tm.runUnitTest('oof', 'check:unit:oof', gcov_paths, true, ['unit-test-master'], gcovr_options)
}

void doORMPipeline(List gcovr_options)
Expand All @@ -62,7 +62,7 @@ void doORMPipeline(List gcovr_options)
'build/**/*.gc*',
'build/gnu_x86_64/tests/onload/onload_remote_monitor/internal_tests/test_ftl',
]
coverage_files['orm'] = tm.runUnitTest('orm', 'check:unit:orm', gcov_paths, true, [], gcovr_options)
coverage_files['orm'] = tm.runUnitTest('orm', 'check:unit:orm', gcov_paths, true, ['unit-test-master'], gcovr_options)
}

void doDeveloperBuild(String build_profile=null) {
Expand Down Expand Up @@ -92,7 +92,7 @@ void doDeveloperBuild(String build_profile=null) {
}

tasks[thread_title] = {
node('dev-build') {
node('unit-test-master') {
def workspace = "workspace/${new URLDecoder().decode(env.JOB_NAME)}/exec-${env.EXECUTOR_NUMBER}-${thread_title}"
ws(workspace) {
if( component == 'efct_driver' ) {
Expand Down Expand Up @@ -155,7 +155,7 @@ void doSystemTests() {
'check:cplane_sys',
gcov_paths,
true,
['netlink-inc-bond'],
['netlink-inc-bond', 'unit-test-master'],
)
}
},
Expand Down Expand Up @@ -199,7 +199,7 @@ void doUnitTestsPipeline() {
String[] build_profiles

nm.slack_notify {
node('unit-test-parallel') {
node('unit-test-master') {
stage('Checkout') {
def scmVars = scmmanager.cloneGit(scm)
long_revision = scmVars.GIT_COMMIT
Expand Down

0 comments on commit f3ce2ba

Please sign in to comment.