Skip to content

Commit

Permalink
WIP: PR implementation
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 May 15, 2024
1 parent c6e5fc5 commit 54a15c9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions jenkins-scripts/dsl/gazebo_libs.dsl
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,22 @@ gz_collections_yaml.collections.each { collection ->
job_name: gz_ci_job.name])
} // end of daily category enabled
}

if (categories_enabled.contains('pr'))
{
if (ci_config.system.so == 'linux')
{
def pre_setup_script = ci_config.pre_setup_script_hook?.get(lib_name)?.join('\n')
def extra_cmd = pre_setup_script ?: ""
if (categories_enabled.contains('stable_branches') && \
(! ci_config.exclude.abichecker?.contains(lib_name)))
{
// generate_label_by_requirements(gz_ci_any_job, lib_name, ci_config.requirements)
}
} else if (ci_config.system.so == 'darwin') {
} else if (ci_config.system.so == 'windows') {
}

}
}

Expand Down

0 comments on commit 54a15c9

Please sign in to comment.