X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=jobs%2Flttng-tools.yaml;h=176d75f155ff4d5062bc7a72e5c3e4e7b7c66b25;hb=9fc19e2832a82f3bd4f999506bf7b19a0e34c856;hp=93c7b4309e1d2c0aca754fbc891bd80fa25549ec;hpb=1fd80da279cd1d264c86d7bb5f9a99804df20174;p=lttng-ci.git diff --git a/jobs/lttng-tools.yaml b/jobs/lttng-tools.yaml index 93c7b43..176d75f 100644 --- a/jobs/lttng-tools.yaml +++ b/jobs/lttng-tools.yaml @@ -17,7 +17,7 @@ colormap: xterm - timeout: <tng-tools_wrapper_timeout_defaults timeout: 30 - fail: true + abort: true type: no-activity write-description: "

This build failed due to timeout.

" - timestamps @@ -38,17 +38,17 @@ cron: "@hourly" properties: - - inject: + - inject: <tng-tools_property_inject_defaults properties-content: | PROJECT_NAME=lttng-tools - - build-discarder: + - build-discarder: <tng-tools_property_build-discarder_defaults num-to-keep: 20 artifact-num-to-keep: 2 - - github: + - github: <tng-tools_property_github_defaults url: https://github.com/{github_user}/lttng-tools ## Anchors -- lttng-tools_steps_copyartifact_defaults: +- _lttng-tools_steps_copyartifact_defaults: name: 'lttng-tools_steps_copyartifact_defaults' steps: - copyartifact: <tng-tools_steps_copyartifact_defaults @@ -61,7 +61,7 @@ ## Axis Anchors -- lttng-tools_matrix_axes_defaults: <tng-tools_matrix_axes_defaults +- _lttng-tools_matrix_axes_defaults: <tng-tools_matrix_axes_defaults name: 'lttng-tools_matrix_axes_defaults' project-type: matrix node: 'master' # Applies only to matrix flyweight task @@ -91,12 +91,8 @@ type: user-defined name: babeltrace_version values: '{obj:babelversions}' - - axis: <tng-tools_matrix_axis_test_type - type: user-defined - name: test_type - values: '{obj:testtypes}' -- lttng-tools_matrix_axes_rootbuild: <tng-tools_matrix_axes_rootbuild +- _lttng-tools_matrix_axes_rootbuild: <tng-tools_matrix_axes_rootbuild name: 'lttng-tools_matrix_axes_rootbuild' project-type: matrix node: 'master' # Applies only to matrix flyweight task @@ -107,6 +103,7 @@ name: node values: - 'amd64-rootnode' + - 'i386-rootnode' - axis: <<: *lttng-tools_matrix_axis_platform type: user-defined @@ -114,11 +111,10 @@ - axis: *lttng-tools_matrix_axis_build - axis: *lttng-tools_matrix_axis_liburcu_version - axis: *lttng-tools_matrix_axis_babeltrace_version - - axis: *lttng-tools_matrix_axis_test_type ## Builders Anchors -- lttng-tools_builders_defaults: <tng-tools_builders_defaults +- _lttng-tools_builders_defaults: <tng-tools_builders_defaults name: 'lttng-tools_builders_defaults' builders: # Generate a properties file to add additionnal env @@ -190,15 +186,15 @@ git clone -b "{version}" https://github.com/{github_user}/lttng-modules.git src/lttng-modules - shell: - !include-raw-escape: scripts/lttng-tools/clean_processes_coredump.sh + !include-raw-escape: scripts/lttng-tools/prebuild_clean_processes_coredumps.sh - shell: !include-raw-escape: - scripts/common/print.sh - scripts/lttng-tools/build.sh -- lttng-tools_builders_gerrit: <tng-tools_builders_gerrit - name: 'lttng-tools_builders_gerrit' +- _lttng-tools_builders_review: <tng-tools_builders_review + name: 'lttng-tools_builders_review' builders: - shell: !include-raw-escape: scripts/lttng-tools/gerrit-depends-on.sh @@ -254,7 +250,7 @@ project: '{bt_job_prefix}babeltrace_${{babeltrace_version}}_{buildtype}/platform=${{platform}},conf=std,build=std' - shell: - !include-raw-escape: scripts/lttng-tools/clean_processes_coredump.sh + !include-raw-escape: scripts/lttng-tools/prebuild_clean_processes_coredumps.sh # Build liburcu if we depend on a specific liburcu change - conditional-step: @@ -282,7 +278,7 @@ - shell: !include-raw-escape: scripts/lttng-tools/gerrit-install-deps.sh - # Build babeltrace if we depend on a specific babeltrace change + # Build lttng-ust if we depend on a specific lttng-ust change - conditional-step: condition-kind: shell condition-command: 'test "$GERRIT_DEP_LTTNG_UST" != ""' @@ -301,7 +297,7 @@ - scripts/common/print.sh - scripts/lttng-tools/build.sh -- lttng-tools_builders_win: <tng-tools_builders_win +- _lttng-tools_builders_win: <tng-tools_builders_win name: 'lttng-tools_builders_win' builders: # Always copy liburcu artifacts @@ -352,21 +348,38 @@ - scripts/common/print.sh - scripts/lttng-tools/build.sh -- lttng-tools_publishers_defaults: <tng-tools_publishers_defaults +- _lttng-tools_publishers_defaults: <tng-tools_publishers_defaults name: 'lttng-tools_publishers_defaults' publishers: + # On build abort (timeout), wait 10 seconds before running the other post + # build scripts, this will allow the processes to terminate and make the + # build log more legible. + - postbuildscript: <tng-tools_publisher_postbuildscript_wait_10_seconds_on_abort + mark-unstable-if-failed: false + builders: + - role: SLAVE + build-on: + - ABORTED + build-steps: + - shell: + !include-raw-escape: scripts/lttng-tools/postbuild_wait_10_seconds.sh + # On build failure, try to get partial tap results if any exists - - postbuildscript: + - postbuildscript: <tng-tools_publisher_postbuildscript_collect_tap_on_failure mark-unstable-if-failed: false builders: - role: SLAVE build-on: + - ABORTED - FAILURE build-steps: - shell: - !include-raw-escape: scripts/lttng-tools/tap_failure.sh + !include-raw-escape: scripts/lttng-tools/postbuild_collect_tap_results.sh - - postbuildscript: + # If there are leftover lttng processes or core files present, kill the + # processes, collect the core files, delete them and mark the build + # unstable. + - postbuildscript: <tng-tools_publisher_postbuildscript_clean_processes_coredumps mark-unstable-if-failed: true builders: - role: SLAVE @@ -378,12 +391,14 @@ - FAILURE build-steps: - shell: - !include-raw-escape: scripts/lttng-tools/hang_processes.sh + !include-raw-escape: scripts/lttng-tools/postbuild_clean_processes_coredumps.sh - tap: <tng-tools_publisher_tap_defaults results: 'tap/**/*.*' fail-if-no-results: true failed-tests-mark-build-as-failure: true + include-comment-diagnostics: true + output-tap-to-console: false todo-is-failure: false - raw: <tng-tools_publisher_warnings-ng_defaults @@ -398,14 +413,6 @@ false - - - - - - - false - @@ -436,13 +443,19 @@ - archive: <tng-tools_publisher_archive_defaults - artifacts: 'build/**,deps/**,tap/**' + artifacts: 'build/**,deps/**,tap/**,log/**' + follow-symlinks: true allow-empty: false - workspace-cleanup: <tng-tools_publisher_workspace-cleanup_defaults clean-if: - failure: false + - ircbot: <tng-tools_publisher_ircbot_defaults + strategy: statechange-only + message-type: summary + matrix-notifier: only-parent + - email-ext: <tng-tools_publisher_email-ext_defaults recipients: '{obj:email_to}' reply-to: ci-notification@lists.lttng.org @@ -466,15 +479,17 @@ send-to: - recipients -- lttng-tools_publishers_win: <tng-tools_publishers_win +- _lttng-tools_publishers_win: <tng-tools_publishers_win name: 'lttng-tools_publishers_win' publishers: - tap: *lttng-tools_publisher_tap_defaults - raw: *lttng-tools_publisher_warnings-ng_defaults - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults - archive: *lttng-tools_publisher_archive_defaults + - ircbot: *lttng-tools_publisher_ircbot_defaults - email-ext: *lttng-tools_publisher_email-ext_defaults + ## Templates - job-template: name: '{job_prefix}lttng-tools_{version}_{buildtype}' @@ -502,6 +517,14 @@ name: '{job_prefix}lttng-tools_{version}_long_regression' defaults: lttng-tools + properties: + - inject: + properties-content: | + PROJECT_NAME=lttng-tools + LTTNG_TOOLS_RUN_TESTS_LONG_REGRESSION=yes + - build-discarder: *lttng-tools_property_build-discarder_defaults + - github: *lttng-tools_property_github_defaults + wrappers: - ansicolor: *lttng-tools_wrapper_ansicolor_defaults - timeout: @@ -544,6 +567,30 @@ jobs: '{ust_job_prefix}lttng-ust_{version}_build' result: 'success' +- job-template: + name: '{job_prefix}lttng-tools_{version}_rootbuild_i386' + defaults: lttng-tools + + scm: + - git: *lttng-tools_scm_git_default + + wrappers: + - ansicolor: *lttng-tools_wrapper_ansicolor_defaults + - timeout: + <<: *lttng-tools_wrapper_timeout_defaults + timeout: 10 + - timestamps + + <<: *lttng-tools_matrix_axes_rootbuild + <<: *lttng-tools_builders_defaults + <<: *lttng-tools_publishers_defaults + + triggers: + - pollscm: *lttng-tools_trigger_pollscm_default + - reverse: + jobs: '{ust_job_prefix}lttng-ust_{version}_build' + result: 'success' + - job-template: name: lttng-tools_{version}_winbuild defaults: lttng-tools @@ -553,12 +600,12 @@ <<: *lttng-tools_publishers_win - job-template: - name: dev_gerrit_lttng-tools_{buildtype} + name: dev_review_lttng-tools_{version}_{buildtype} defaults: lttng-tools concurrent: true scm: - - git: <tng-tools_scm_git_gerrit + - git: <tng-tools_scm_git_review url: https://review.lttng.org/lttng-tools refspec: 'refs/changes/*:refs/changes/*' branches: @@ -576,13 +623,11 @@ - project-compare-type: 'PLAIN' project-pattern: 'lttng-tools' branches: - - branch-compare-type: 'ANT' - branch-pattern: '**' + - branch-compare-type: 'PLAIN' + branch-pattern: '{version}' properties: - - inject: - properties-content: | - PROJECT_NAME=lttng-tools + - inject: *lttng-tools_property_inject_defaults - build-discarder: days-to-keep: 1 - throttle: @@ -591,32 +636,21 @@ - 'gerrit-{buildtype}' <<: *lttng-tools_matrix_axes_defaults - <<: *lttng-tools_builders_gerrit + <<: *lttng-tools_builders_review publishers: - - postbuildscript: - mark-unstable-if-failed: false - builders: - - role: SLAVE - build-on: - - FAILURE - build-steps: - - shell: - !include-raw-escape: scripts/lttng-tools/tap_failure.sh + # On build abort (timeout), wait 10 seconds before running the other post + # build scripts, this will allow the processes to terminate and make the + # build log more legible. + - postbuildscript: *lttng-tools_publisher_postbuildscript_wait_10_seconds_on_abort - - postbuildscript: - mark-unstable-if-failed: true - builders: - - role: SLAVE - build-on: - - SUCCESS - - UNSTABLE - - NOT_BUILT - - ABORTED - - FAILURE - build-steps: - - shell: - !include-raw-escape: scripts/lttng-tools/hang_processes.sh + # On build failure, try to get partial tap results if any exists + - postbuildscript: *lttng-tools_publisher_postbuildscript_collect_tap_on_failure + + # If there are leftover lttng processes or core files present, kill the + # processes, collect the core files, delete them and mark the build + # unstable. + - postbuildscript: *lttng-tools_publisher_postbuildscript_clean_processes_coredumps - tap: *lttng-tools_publisher_tap_defaults - raw: *lttng-tools_publisher_warnings-ng_defaults @@ -624,20 +658,148 @@ - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults - job-template: - name: dev_gerrit_lttng-tools_rootbuild + name: dev_review_lttng-tools_{version}_smokebuild defaults: lttng-tools concurrent: true scm: - - git: *lttng-tools_scm_git_gerrit + - git: *lttng-tools_scm_git_review triggers: - - gerrit: *lttng-tools_trigger_gerrit_default + - gerrit: <tng-tools_trigger_gerrit_smoke_1 + trigger-on: + - comment-added-event: + approval-category: 'Smoke-Build' + approval-value: 1 + projects: + - project-compare-type: 'PLAIN' + project-pattern: 'lttng-tools' + branches: + - branch-compare-type: 'PLAIN' + branch-pattern: '{version}' + skip-vote: + successful: true + failed: true + unstable: true + notbuilt: true + aborted: true properties: - inject: properties-content: | PROJECT_NAME=lttng-tools + LTTNG_TOOLS_RUN_TESTS=no + - build-discarder: + days-to-keep: 1 + + <<: *lttng-tools_matrix_axes_defaults + <<: *lttng-tools_builders_review + + publishers: + - raw: *lttng-tools_publisher_warnings-ng_defaults + - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults + +- job-template: + name: dev_review_lttng-tools_{version}_clang-tidy + defaults: lttng-tools + concurrent: true + + scm: + - git: *lttng-tools_scm_git_review + + triggers: + - gerrit: <tng-tools_trigger_gerrit_smoke_2 + trigger-on: + - comment-added-event: + approval-category: 'Smoke-Build' + approval-value: 2 + projects: + - project-compare-type: 'PLAIN' + project-pattern: 'lttng-tools' + branches: + - branch-compare-type: 'PLAIN' + branch-pattern: '{version}' + skip-vote: + successful: true + failed: true + unstable: true + notbuilt: true + aborted: true + + properties: + - inject: + properties-content: | + PROJECT_NAME=lttng-tools + LTTNG_TOOLS_MAKE_INSTALL=no + LTTNG_TOOLS_MAKE_CLEAN=no + LTTNG_TOOLS_RUN_TESTS=no + LTTNG_TOOLS_GEN_COMPILE_COMMANDS=yes + LTTNG_TOOLS_CLANG_TIDY=yes + - build-discarder: + days-to-keep: 1 + + <<: *lttng-tools_matrix_axes_defaults + <<: *lttng-tools_builders_review + + publishers: + - raw: + xml: | + + + + + + + + + false + + + + + + false + true + false + 0 + 0 + + LOW + + + true + true + false + true + false + + + FAILED + 1 + TOTAL + + + AGGREGATION_TOOLS + + + - archive: + artifacts: 'clang-tidy-fixes.diff' + allow-empty: true + - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults + +- job-template: + name: dev_review_lttng-tools_{version}_rootbuild + defaults: lttng-tools + concurrent: true + + scm: + - git: *lttng-tools_scm_git_review + + triggers: + - gerrit: *lttng-tools_trigger_gerrit_default + + properties: + - inject: *lttng-tools_property_inject_defaults - build-discarder: days-to-keep: 1 - throttle: @@ -646,7 +808,7 @@ - 'gerrit-{buildtype}' <<: *lttng-tools_matrix_axes_rootbuild - <<: *lttng-tools_builders_gerrit + <<: *lttng-tools_builders_review publishers: - tap: *lttng-tools_publisher_tap_defaults @@ -654,6 +816,34 @@ - archive: *lttng-tools_publisher_archive_defaults - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults +- job-template: + name: 'dev_review_lttng-tools_{version}_check-format' + defaults: lttng-tools + concurrent: true + + scm: + - git: *lttng-tools_scm_git_review + + triggers: + - gerrit: *lttng-tools_trigger_gerrit_smoke_1 + + node: 'jammy-amd64' + + builders: + - shell: + !include-raw-escape: scripts/common/check-format.sh + + properties: + - inject: *lttng-tools_property_inject_defaults + - build-discarder: + days-to-keep: 1 + + publishers: + - archive: + artifacts: 'clang-format-fixes.diff' + allow-empty: true + - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults + - job-template: name: lttng-tools_{version}_release defaults: lttng-tools @@ -684,34 +874,23 @@ <<: *lttng-tools_steps_copyartifact_defaults project: 'lttng-ust_{ustversion}_build/liburcu_version={urcuversion},platform=bionic-amd64,conf=agents,build=std' - shell: - !include-raw-escape: scripts/lttng-tools/clean_processes_coredump.sh + !include-raw-escape: scripts/lttng-tools/prebuild_clean_processes_coredumps.sh - shell: !include-raw-escape: scripts/lttng-tools/release.sh publishers: - - postbuildscript: - mark-unstable-if-failed: false - builders: - - role: SLAVE - build-on: - - ABORTED - build-steps: - - shell: - !include-raw-escape: scripts/lttng-tools/tap_failure.sh + # On build abort (timeout), wait 10 seconds before running the other post + # build scripts, this will allow the processes to terminate and make the + # build log more legible. + - postbuildscript: *lttng-tools_publisher_postbuildscript_wait_10_seconds_on_abort - - postbuildscript: - mark-unstable-if-failed: true - builders: - - role: SLAVE - build-on: - - SUCCESS - - UNSTABLE - - NOT_BUILT - - ABORTED - - FAILURE - build-steps: - - shell: - !include-raw-escape: scripts/lttng-tools/hang_processes.sh + # On build failure, try to get partial tap results if any exists + - postbuildscript: *lttng-tools_publisher_postbuildscript_collect_tap_on_failure + + # If there are leftover lttng processes or core files present, kill the + # processes, collect the core files, delete them and mark the build + # unstable. + - postbuildscript: *lttng-tools_publisher_postbuildscript_clean_processes_coredumps - tap: *lttng-tools_publisher_tap_defaults - raw: *lttng-tools_publisher_warnings-ng_defaults @@ -720,27 +899,7 @@ allow-empty: false fingerprint: true - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults - -- job-template: - name: lttng-tools_{version}_cppcheck - defaults: lttng-tools - - triggers: - - pollscm: - cron: "@daily" - - builders: - - shell: | - rm -f cppcheck-result.xml - cppcheck --enable=all --xml --xml-version=2 $WORKSPACE 2> cppcheck-result.xml - - publishers: - - archive: - artifacts: 'cppcheck-result.xml' - allow-empty: false - - cppcheck: - pattern: 'cppcheck-result.xml' - - email-ext: *lttng-tools_publisher_email-ext_defaults + - ircbot: *lttng-tools_publisher_ircbot_defaults - job-template: name: lttng-tools_{version}_scan-build @@ -766,6 +925,7 @@ name: 'HTML Report' dir: 'scan-build-archive/' files: 'index.html' + - ircbot: *lttng-tools_publisher_ircbot_defaults - job-template: name: lttng-tools_{version}_coverity @@ -802,6 +962,7 @@ artifacts: 'analysis-results.tgz,cov-int/**' allow-empty: false - workspace-cleanup: *lttng-tools_publisher_workspace-cleanup_defaults + - ircbot: *lttng-tools_publisher_ircbot_defaults ## Views @@ -826,6 +987,17 @@ - master jobs: # Master # + - '{job_prefix}lttng-tools_{version}_{buildtype}': + buildtype: linuxbuild + version: master + ustversion: master + platforms: !!python/tuple [jammy-amd64] + builds: !!python/tuple [std, oot, dist] + confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback] + urcuversions: !!python/tuple [master] + babelversions: !!python/tuple [stable-2.0, master] + filter: '(build=="std") || ((babeltrace_version=="master" && (conf=="std" || conf=="agents" || conf=="no-ust")))' + touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': buildtype: build version: master @@ -835,31 +1007,28 @@ confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback] urcuversions: !!python/tuple [master] babelversions: !!python/tuple [stable-2.0, master] - testtypes: !!python/tuple [base] filter: '(build=="std") || ((babeltrace_version=="master" && (conf=="std" || conf=="agents" || conf=="no-ust")))' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': buildtype: portbuild version: master ustversion: master - platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386] + platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386] builds: !!python/tuple [std] confs: !!python/tuple [std, no-ust, agents] urcuversions: !!python/tuple [master] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': buildtype: slesbuild version: master ustversion: master - platforms: !!python/tuple [sles12sp5-amd64] + platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64] builds: !!python/tuple [std] confs: !!python/tuple [agents] urcuversions: !!python/tuple [master] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': @@ -871,7 +1040,17 @@ confs: !!python/tuple [std] urcuversions: !!python/tuple [master] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] + filter: '' + touchstone: '' + - '{job_prefix}lttng-tools_{version}_{buildtype}': + buildtype: yoctobuild + version: master + ustversion: master + platforms: !!python/tuple [yocto23-powerpcspe, yocto23-powerpc, yocto31-ppc64] + builds: !!python/tuple [std] + confs: !!python/tuple [std] + urcuversions: !!python/tuple [master] + babelversions: !!python/tuple [stable-2.0] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': @@ -883,7 +1062,6 @@ confs: !!python/tuple [relayd-only] urcuversions: !!python/tuple [master] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - 'lttng-tools_{version}_winbuild': @@ -894,7 +1072,6 @@ confs: !!python/tuple [relayd-only] urcuversions: !!python/tuple [master] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_long_regression': @@ -906,7 +1083,6 @@ confs: !!python/tuple [std] urcuversions: !!python/tuple [master] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [full] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_rootbuild': @@ -918,8 +1094,18 @@ confs: !!python/tuple [agents] urcuversions: !!python/tuple [master] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] - filter: '' + filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")' + touchstone: '' + - '{job_prefix}lttng-tools_{version}_rootbuild_i386': + buildtype: portbuild + version: master + ustversion: master + platforms: !!python/tuple [deb11-i386] + builds: !!python/tuple [std] + confs: !!python/tuple [agents] + urcuversions: !!python/tuple [master] + babelversions: !!python/tuple [stable-2.0] + filter: '(node=="i386-rootnode" && platform=="deb11-i386")' touchstone: '' - 'lttng-tools_{version}_scan-build': version: master @@ -931,6 +1117,17 @@ ustversion: master # stable-2.13 + - '{job_prefix}lttng-tools_{version}_{buildtype}': + buildtype: linuxbuild + version: stable-2.13 + ustversion: stable-2.13 + platforms: !!python/tuple [jammy-amd64] + builds: !!python/tuple [std, oot, dist] + confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback] + urcuversions: !!python/tuple [stable-0.13] + babelversions: !!python/tuple [stable-2.0] + filter: '(build=="std") || ((babeltrace_version=="stable-2.0" && (conf=="std" || conf=="agents" || conf=="no-ust")))' + touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': buildtype: build version: stable-2.13 @@ -940,31 +1137,28 @@ confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '(build=="std") || ((babeltrace_version=="stable-2.0" && (conf=="std" || conf=="agents" || conf=="no-ust")))' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': buildtype: portbuild version: stable-2.13 ustversion: stable-2.13 - platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386] + platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386] builds: !!python/tuple [std] confs: !!python/tuple [std, no-ust, agents] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': buildtype: slesbuild version: stable-2.13 ustversion: stable-2.13 - platforms: !!python/tuple [sles12sp5-amd64] + platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64] builds: !!python/tuple [std] confs: !!python/tuple [agents] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': @@ -976,7 +1170,17 @@ confs: !!python/tuple [std] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] + filter: '' + touchstone: '' + - '{job_prefix}lttng-tools_{version}_{buildtype}': + buildtype: yoctobuild + version: stable-2.13 + ustversion: stable-2.13 + platforms: !!python/tuple [yocto23-powerpcspe, yocto23-powerpc, yocto31-ppc64] + builds: !!python/tuple [std] + confs: !!python/tuple [std] + urcuversions: !!python/tuple [stable-0.13] + babelversions: !!python/tuple [stable-2.0] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': @@ -988,7 +1192,6 @@ confs: !!python/tuple [relayd-only] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - 'lttng-tools_{version}_winbuild': @@ -999,7 +1202,6 @@ confs: !!python/tuple [relayd-only] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_long_regression': @@ -1011,7 +1213,6 @@ confs: !!python/tuple [std] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [full] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_rootbuild': @@ -1023,8 +1224,7 @@ confs: !!python/tuple [agents] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] - filter: '' + filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")' touchstone: '' - 'lttng-tools_{version}_release': version: v2.13 @@ -1037,6 +1237,17 @@ ustversion: stable-2.13 # stable-2.12 + - '{job_prefix}lttng-tools_{version}_{buildtype}': + buildtype: linuxbuild + version: stable-2.12 + ustversion: stable-2.12 + platforms: !!python/tuple [jammy-amd64] + builds: !!python/tuple [std, oot, dist] + confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback] + urcuversions: !!python/tuple [stable-0.13] + babelversions: !!python/tuple [stable-2.0] + filter: '(build=="std") || ((babeltrace_version=="stable-2.0" && (conf=="std" || conf=="agents" || conf=="no-ust")))' + touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': buildtype: build version: stable-2.12 @@ -1046,31 +1257,28 @@ confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '(build=="std") || ((babeltrace_version=="stable-2.0" && (conf=="std" || conf=="agents" || conf=="no-ust")))' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': buildtype: portbuild version: stable-2.12 ustversion: stable-2.12 - platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386] + platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386] builds: !!python/tuple [std] confs: !!python/tuple [std, no-ust, agents] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': buildtype: slesbuild version: stable-2.12 ustversion: stable-2.12 - platforms: !!python/tuple [sles12sp5-amd64] + platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64] builds: !!python/tuple [std] confs: !!python/tuple [agents] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': @@ -1082,7 +1290,17 @@ confs: !!python/tuple [std] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] + filter: '' + touchstone: '' + - '{job_prefix}lttng-tools_{version}_{buildtype}': + buildtype: yoctobuild + version: stable-2.12 + ustversion: stable-2.12 + platforms: !!python/tuple [yocto23-powerpcspe, yocto23-powerpc, yocto31-ppc64] + builds: !!python/tuple [std] + confs: !!python/tuple [std] + urcuversions: !!python/tuple [stable-0.13] + babelversions: !!python/tuple [stable-2.0] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': @@ -1094,7 +1312,6 @@ confs: !!python/tuple [relayd-only] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - 'lttng-tools_{version}_winbuild': @@ -1105,7 +1322,6 @@ confs: !!python/tuple [relayd-only] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_long_regression': @@ -1117,7 +1333,6 @@ confs: !!python/tuple [std] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [full] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_rootbuild': @@ -1129,8 +1344,7 @@ confs: !!python/tuple [agents] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] - filter: '' + filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")' touchstone: '' - 'lttng-tools_{version}_release': version: v2.12 @@ -1142,9 +1356,6 @@ urcuversion: stable-0.13 ustversion: stable-2.12 - # Other jobs - - 'lttng-tools_{version}_cppcheck' - - project: name: dev_upstream_lttng-tools job_prefix: 'dev_upstream_' @@ -1156,39 +1367,36 @@ jobs: # stable-2.11 - '{job_prefix}lttng-tools_{version}_{buildtype}': - buildtype: build + buildtype: linuxbuild version: stable-2.11 ustversion: stable-2.11 - platforms: !!python/tuple [bionic-amd64] + platforms: !!python/tuple [jammy-amd64] builds: !!python/tuple [std, oot, dist] confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback] urcuversions: !!python/tuple [stable-0.11] babelversions: !!python/tuple [stable-1.5] - testtypes: !!python/tuple [base] filter: '(build=="std") || (conf=="std" || conf=="agents" || conf=="no-ust")' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': buildtype: portbuild version: stable-2.11 ustversion: stable-2.11 - platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386] + platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386] builds: !!python/tuple [std] confs: !!python/tuple [no-ust, agents] urcuversions: !!python/tuple [stable-0.11] babelversions: !!python/tuple [stable-1.5] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': buildtype: slesbuild version: stable-2.11 ustversion: stable-2.11 - platforms: !!python/tuple [sles12sp5-amd64] + platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64] builds: !!python/tuple [std] confs: !!python/tuple [agents] urcuversions: !!python/tuple [stable-0.11] babelversions: !!python/tuple [stable-1.5] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': @@ -1200,69 +1408,41 @@ confs: !!python/tuple [std] urcuversions: !!python/tuple [stable-0.11] babelversions: !!python/tuple [stable-1.5] - testtypes: !!python/tuple [base] - filter: '' - touchstone: '' - - '{job_prefix}lttng-tools_{version}_long_regression': - buildtype: build - version: stable-2.11 - ustversion: stable-2.11 - platforms: !!python/tuple [bionic-amd64] - builds: !!python/tuple [std] - confs: !!python/tuple [std] - urcuversions: !!python/tuple [stable-0.11] - babelversions: !!python/tuple [stable-1.5] - testtypes: !!python/tuple [full] - filter: '' - touchstone: '' - - '{job_prefix}lttng-tools_{version}_rootbuild': - buildtype: build - version: stable-2.11 - ustversion: stable-2.11 - platforms: !!python/tuple [bionic-amd64] - builds: !!python/tuple [std] - confs: !!python/tuple [agents] - urcuversions: !!python/tuple [stable-0.11] - babelversions: !!python/tuple [stable-1.5] - testtypes: !!python/tuple [base] filter: '' touchstone: '' # stable-2.10 - '{job_prefix}lttng-tools_{version}_{buildtype}': - buildtype: build + buildtype: linuxbuild version: stable-2.10 ustversion: stable-2.10 - platforms: !!python/tuple [bionic-amd64] + platforms: !!python/tuple [jammy-amd64] builds: !!python/tuple [std, oot, dist] confs: !!python/tuple [std, no-ust, agents, debug-rcu, tls_fallback] urcuversions: !!python/tuple [stable-0.9] babelversions: !!python/tuple [stable-1.5] - testtypes: !!python/tuple [base] filter: '(build=="std") || (conf=="std" || conf=="agents" || conf=="no-ust")' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': buildtype: portbuild version: stable-2.10 ustversion: stable-2.10 - platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386] + platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386] builds: !!python/tuple [std] confs: !!python/tuple [no-ust, agents] urcuversions: !!python/tuple [stable-0.9] babelversions: !!python/tuple [stable-1.5] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': buildtype: slesbuild version: stable-2.10 ustversion: stable-2.10 - platforms: !!python/tuple [sles12sp5-amd64] + platforms: !!python/tuple [sles12sp5-amd64, sles15sp4-amd64] builds: !!python/tuple [std] confs: !!python/tuple [agents] urcuversions: !!python/tuple [stable-0.9] babelversions: !!python/tuple [stable-1.5] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - '{job_prefix}lttng-tools_{version}_{buildtype}': @@ -1274,19 +1454,6 @@ confs: !!python/tuple [std] urcuversions: !!python/tuple [stable-0.9] babelversions: !!python/tuple [stable-1.5] - testtypes: !!python/tuple [base] - filter: '' - touchstone: '' - - '{job_prefix}lttng-tools_{version}_long_regression': - buildtype: build - version: stable-2.10 - ustversion: stable-2.10 - platforms: !!python/tuple [bionic-amd64] - builds: !!python/tuple [std] - confs: !!python/tuple [std] - urcuversions: !!python/tuple [stable-0.9] - babelversions: !!python/tuple [stable-1.5] - testtypes: !!python/tuple [full] filter: '' touchstone: '' @@ -1310,19 +1477,17 @@ confs: !!python/tuple [std, no-ust, agents] urcuversions: !!python/tuple [master] babelversions: !!python/tuple [stable-2.0, master] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - 'dev_{user}_lttng-tools_{version}_{buildtype}': buildtype: portbuild version: master-staging ustversion: master - platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386] + platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386] builds: !!python/tuple [std] confs: !!python/tuple [std, no-ust, agents] urcuversions: !!python/tuple [master] babelversions: !!python/tuple [stable-1.5, master] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - 'dev_{user}_lttng-tools_{version}_{buildtype}': @@ -1334,7 +1499,6 @@ confs: !!python/tuple [relayd-only] urcuversions: !!python/tuple [master] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '' touchstone: '' @@ -1348,19 +1512,17 @@ confs: !!python/tuple [std, no-ust, agents] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0, master] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - 'dev_{user}_lttng-tools_{version}_{buildtype}': buildtype: portbuild version: stable-2.13-staging ustversion: stable-2.13 - platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386] + platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386] builds: !!python/tuple [std] confs: !!python/tuple [std, no-ust, agents] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '' touchstone: '' @@ -1374,19 +1536,17 @@ confs: !!python/tuple [std, no-ust, agents] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0, master] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - 'dev_{user}_lttng-tools_{version}_{buildtype}': buildtype: portbuild version: stable-2.12-staging ustversion: stable-2.12 - platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386] + platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386] builds: !!python/tuple [std] confs: !!python/tuple [std, no-ust, agents] urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '' touchstone: '' @@ -1410,19 +1570,17 @@ confs: !!python/tuple [std, no-ust, agents] urcuversions: !!python/tuple [stable-0.11] babelversions: !!python/tuple [stable-1.5] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - 'dev_{user}_lttng-tools_{version}_{buildtype}': buildtype: portbuild version: stable-2.11-staging ustversion: stable-2.11 - platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386] + platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386] builds: !!python/tuple [std] confs: !!python/tuple [std, no-ust, agents] urcuversions: !!python/tuple [stable-0.11] babelversions: !!python/tuple [stable-1.5] - testtypes: !!python/tuple [base] filter: '' touchstone: '' @@ -1436,50 +1594,115 @@ confs: !!python/tuple [std, no-ust, agents] urcuversions: !!python/tuple [stable-0.9] babelversions: !!python/tuple [stable-1.5] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - 'dev_{user}_lttng-tools_{version}_{buildtype}': buildtype: portbuild version: stable-2.10-staging ustversion: stable-2.10 - platforms: !!python/tuple [deb11-armhf, deb11-arm64, sid-powerpc, deb11-ppc64el, deb11-i386] + platforms: !!python/tuple [deb11-armhf, deb11-arm64, deb11-ppc64el, deb11-i386] builds: !!python/tuple [std] confs: !!python/tuple [std, no-ust, agents] urcuversions: !!python/tuple [stable-0.9] babelversions: !!python/tuple [stable-1.5] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - project: - name: gerrit-lttng-tools + name: review-lttng-tools job_prefix: '' ust_job_prefix: '' urcu_job_prefix: '' bt_job_prefix: '' github_user: lttng jobs: - - 'dev_gerrit_lttng-tools_{buildtype}': + ## Master ## + - 'dev_review_lttng-tools_{version}_{buildtype}': + version: master + buildtype: build + platforms: !!python/tuple [bionic-amd64] + builds: !!python/tuple [std, oot, dist, oot-dist] + confs: !!python/tuple [std, no-ust, agents] + urcuversions: !!python/tuple [stable-0.14] # Baseline is stable-0.14 for C++ support + babelversions: !!python/tuple [stable-2.0] + filter: '' + touchstone: '' + - 'dev_review_lttng-tools_{version}_rootbuild': + version: master + buildtype: build + platforms: !!python/tuple [bionic-amd64] + builds: !!python/tuple [std] + confs: !!python/tuple [agents] + urcuversions: !!python/tuple [stable-0.14] # Baseline is stable-0.14 for C++ support + babelversions: !!python/tuple [stable-2.0] + filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")' + touchstone: '' + - 'dev_review_lttng-tools_{version}_smokebuild': + version: master + buildtype: linuxbuild + platforms: !!python/tuple [jammy-amd64] + builds: !!python/tuple [oot-dist] + confs: !!python/tuple [agents] + urcuversions: !!python/tuple [stable-0.14] # Baseline is stable-0.14 for C++ support + babelversions: !!python/tuple [stable-2.0] + filter: '' + touchstone: '' + - 'dev_review_lttng-tools_{version}_clang-tidy': + version: master + buildtype: linuxbuild + platforms: !!python/tuple [jammy-amd64] + builds: !!python/tuple [std] + confs: !!python/tuple [agents] + urcuversions: !!python/tuple [stable-0.14] # Baseline is stable-0.14 for C++ support + babelversions: !!python/tuple [stable-2.0] + filter: '' + touchstone: '' + - 'dev_review_lttng-tools_{version}_check-format': + version: master + + ## Stable 2.13 ## + - 'dev_review_lttng-tools_{version}_{buildtype}': + version: stable-2.13 buildtype: build platforms: !!python/tuple [bionic-amd64] builds: !!python/tuple [std, oot, dist, oot-dist] confs: !!python/tuple [std, no-ust, agents] - urcuversions: !!python/tuple [master] # Switch to stable-0.14 when released (for C++ support) + urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '' touchstone: '' - - 'dev_gerrit_lttng-tools_rootbuild': + - 'dev_review_lttng-tools_{version}_rootbuild': + version: stable-2.13 buildtype: build platforms: !!python/tuple [bionic-amd64] builds: !!python/tuple [std] confs: !!python/tuple [agents] - urcuversions: !!python/tuple [master] # Switch to stable-0.14 when released (for C++ support) + urcuversions: !!python/tuple [stable-0.13] + babelversions: !!python/tuple [stable-2.0] + filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")' + touchstone: '' + + ## Stable 2.12 ## + - 'dev_review_lttng-tools_{version}_{buildtype}': + version: stable-2.12 + buildtype: build + platforms: !!python/tuple [bionic-amd64] + builds: !!python/tuple [std, oot, dist, oot-dist] + confs: !!python/tuple [std, no-ust, agents] + urcuversions: !!python/tuple [stable-0.13] babelversions: !!python/tuple [stable-2.0] - testtypes: !!python/tuple [base] filter: '' touchstone: '' + - 'dev_review_lttng-tools_{version}_rootbuild': + version: stable-2.12 + buildtype: build + platforms: !!python/tuple [bionic-amd64] + builds: !!python/tuple [std] + confs: !!python/tuple [agents] + urcuversions: !!python/tuple [stable-0.13] + babelversions: !!python/tuple [stable-2.0] + filter: '(node=="amd64-rootnode" && platform=="bionic-amd64")' + touchstone: '' - project: name: lttng-tools-views