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 stable branch for gz-fuel-tools in harmonic #996

Merged
merged 1 commit into from
Aug 30, 2023
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions jenkins-scripts/dsl/gz-collections.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# ci:
# - linux:
# pr_distro:
# abi_distro:
# abi_distro:
# install_distros:
# - distro1
# - distro2
Expand Down Expand Up @@ -85,7 +85,7 @@ collections:
- name: gz-fuel-tools
major_version: 9
repo:
current_branch: main
current_branch: gz-fuel-tools9
- name: gz-transport
major_version: 13
repo:
Expand Down
11 changes: 5 additions & 6 deletions jenkins-scripts/dsl/ignition.dsl
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ ignition_branches = [ 'cmake' : [ '2' ],

gz_branches = [ 'cmake' : [ '3' ],
'common' : [ '5' ],
'fuel-tools' : [ '8' ],
'fuel-tools' : [ '8', '9' ],
'gui' : [ '7' ],
'launch' : [ '6' ],
'math' : [ '7' ],
Expand All @@ -84,7 +84,6 @@ gz_prerelease_branches = []
// don't appear in gz_branches (like nightly builders or 0-debbuild
// jobs for the special cases of foo0 packages)
gz_extra_debbuild = [ 'gui8',
'fuel-tools9',
'launch7',
'physics7',
'sensors8',
Expand Down Expand Up @@ -380,11 +379,11 @@ void generate_install_job(prefix, gz_sw, major_version, distro, arch)
// Need to be before the ci-pr_any so the abi job name is defined
gz_software.each { gz_sw ->
supported_arches.each { arch ->
// 1 Per library and per linux arch
// 1 Per library and per linux arch
// 1.1 Per abi_distro
// 1.1.1 [job] ABI checker for main branches
// 1.2 Per ci_str_distro
// 1.2.1 [job] Main PR jobs (-ci-pr_any-)
// 1.2.1 [job] Main PR jobs (-ci-pr_any-)
// 1.3 Per all supported_distros
// 1.3.1 Per all supported branches on each library
// 1.3.1.1 [job] Branch jobs -ci-$branch-
Expand Down Expand Up @@ -499,7 +498,7 @@ gz_software.each { gz_sw ->
scm('@daily')
}
}
// 1.3.1.2 Branch ASAN jobs -ci_asan-$branch-
// 1.3.1.2 Branch ASAN jobs -ci_asan-$branch-
// --------------------------------------------------------------
def gz_ci_asan_job = job("ignition_${software_name}-ci_asan-${branch}-${distro}-${arch}")
generate_asan_ci_job(gz_ci_asan_job, software_name, branch, distro, arch)
Expand Down Expand Up @@ -551,7 +550,7 @@ void generate_asan_ci_job(gz_ci_job, gz_sw, branch, distro, arch)
{
generate_ci_job(gz_ci_job, gz_sw, branch, distro, arch,
'-DGZ_SANITIZER=Address',
Globals.MAKETEST_SKIP_GZ,
Globals.MAKETEST_SKIP_GZ,
'export ASAN_OPTIONS=check_initialization_order=true:strict_init_order=true')
}

Expand Down
2 changes: 1 addition & 1 deletion jenkins-scripts/dsl/ignition_collection.dsl
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ gz_collection_jobs =
'ign_utils-gz-2-win',
'gz_cmake-ci-gz-cmake3-jammy-amd64',
'gz_common-ci-gz-common5-jammy-amd64',
'gz_fuel_tools-ci-main-jammy-amd64',
'gz_fuel_tools-ci-gz-fuel-tools9-jammy-amd64',
'gz_gui-ci-main-jammy-amd64',
'gz_launch-ci-main-jammy-amd64',
'gz_math-ci-gz-math7-jammy-amd64',
Expand Down