Skip to content

Commit

Permalink
Geneate -ci-pr_any- for all jobs using yaml
Browse files Browse the repository at this point in the history
Signed-off-by: Jose Luis Rivero <[email protected]>
  • Loading branch information
j-rivero committed Sep 28, 2023
1 parent 7473a18 commit fbe24f3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jenkins-scripts/dsl/gazebo_libs.dsl
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,6 @@ boolean is_testing_enabled(lib_name, ci_config)
void generate_ciconfigs_by_lib(config, configs_per_lib_index)
{
config.collections.each { collection ->
// TODO(jrivero): limit to harmonic for testing proposes
if (collection.name != 'harmonic')
return

collection.libs.each { lib ->
def libName = lib.name
def branch = lib.repo.current_branch
Expand Down Expand Up @@ -181,6 +177,10 @@ configs_per_lib_index.each { lib_name, lib_configs ->

// CI branch jobs (-ci-$branch-) (pulling check every 5 minutes)
branches_with_collections.each { branch_and_collection ->
// TODO: remove after testing
if (branch_and_collection.collection == 'harmonic')
return

branch_name = branch_and_collection.branch
def gz_ci_job = job("${gz_job_name_prefix}-ci-${branch_name}-${distro}-${arch}")
generate_ci_job(gz_ci_job, lib_name, branch_name, ci_config)
Expand Down

0 comments on commit fbe24f3

Please sign in to comment.