X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=jobs%2Fbabeltrace.yaml;h=be15883fe44a22185877ed47cb505f5e88ca545a;hb=adb702d734f543aa0fc6331ddcef48bf08b35ce2;hp=09ddfeb9efe38b4a5a6972ca3b40482191ff469a;hpb=b8475d723d66914c3ee0755cc88a8118ea54bae2;p=lttng-ci.git diff --git a/jobs/babeltrace.yaml b/jobs/babeltrace.yaml index 09ddfeb..be15883 100644 --- a/jobs/babeltrace.yaml +++ b/jobs/babeltrace.yaml @@ -15,19 +15,19 @@ project-type: freestyle wrappers: - - ansicolor - - timeout: - timeout: 90 + - ansicolor: &babeltrace_wrapper_ansicolor_defaults + colormap: xterm + - timeout: &babeltrace_wrapper_timeout_defaults + timeout: 20 fail: true - type: absolute + type: no-activity + write-description: "

This build failed due to timeout.

" - timestamps - - workspace-cleanup: - clean-if: - - failure: false + - workspace-cleanup scm: - git: - url: git://github.com/{github_user}/{github_name}.git + url: https://github.com/{github_user}/{github_name}.git browser: githubweb browser-url: https://github.com/{github_user}/{github_name} branches: @@ -50,81 +50,64 @@ ## Anchors -- babeltrace_build_axes_defaults: &babeltrace_build_axes_defaults - name: 'babeltrace_build_axes_defaults' +- babeltrace_matrix_axes_defaults: &babeltrace_matrix_axes_defaults + name: 'babeltrace_matrix_axes_defaults' project-type: matrix node: 'master' # Applies only to matrix flyweight task + execution-strategy: + combination-filter: '{filter}' + touchstone: + expr: '{touchstone}' + result: unstable axes: - - axis: + - axis: &babeltrace_matrix_axis_arch type: slave name: arch - values: '{obj:arch}' - - axis: + values: '{obj:archs}' + - axis: &babeltrace_matrix_axis_conf type: user-defined name: conf - values: '{obj:conf}' - - axis: + values: '{obj:confs}' + - axis: &babeltrace_matrix_axis_build type: user-defined name: build - values: '{obj:build}' + values: '{obj:builds}' + +- babeltrace_matrix_axes_cc: &babeltrace_matrix_axes_cc + name: 'babeltrace_matrix_axes_cc' + + <<: *babeltrace_matrix_axes_defaults -- babeltrace_build_axes_cc: &babeltrace_build_axes_cc - name: 'babeltrace_build_axes_cc' - project-type: matrix - node: 'master' # Applies only to matrix flyweight task axes: - - axis: - type: slave - name: arch - values: '{obj:arch}' - - axis: - type: user-defined - name: conf - values: '{obj:conf}' - - axis: - type: user-defined - name: build - values: '{obj:build}' - - axis: + - axis: *babeltrace_matrix_axis_arch + - axis: *babeltrace_matrix_axis_conf + - axis: *babeltrace_matrix_axis_build + - axis: &babeltrace_matrix_axis_cc type: user-defined name: cc - values: '{obj:cc}' - -- babeltrace_build_builders_defaults: &babeltrace_build_builders_defaults - name: 'babeltrace_build_builders_defaults' - builders: - - shell: - !include-raw-escape: scripts/babeltrace/build.sh + values: '{obj:ccs}' -- babeltrace_build_builders_win: &babeltrace_build_builders_win - name: 'babeltrace_build_builders_win' +- babeltrace_builders_defaults: &babeltrace_builders_defaults + name: 'babeltrace_builders_defaults' builders: + !j2-yaml: | + {% if buildtype is defined and buildtype == 'winbuild' %} - conditional-step: condition-kind: strings-match on-evaluation-failure: run - condition-string1: '${{arch}}' - condition-string2: 'cygwin' - steps: - - shell: - !include-raw-escape: - - scripts/common/cygwin-shebang - - scripts/common/cygwin-prefix - - scripts/babeltrace/build.sh - - conditional-step: - condition-kind: strings-match - on-evaluation-failure: run - condition-string1: '${{arch}}' + condition-string1: {{ '${{arch}}' }} condition-string2: 'cygwin64' steps: - shell: !include-raw-escape: - scripts/common/cygwin64-shebang - - scripts/common/cygwin-prefix + - scripts/common/cygpath-prefix + - scripts/common/print.sh - scripts/babeltrace/build.sh - conditional-step: condition-kind: strings-match on-evaluation-failure: run - condition-string1: '${{arch}}' + condition-string1: {{ '${{arch}}' }} condition-string2: 'msys2-mingw32' steps: - inject: @@ -132,12 +115,13 @@ - shell: !include-raw-escape: - scripts/common/msys2-shebang - - scripts/common/cygwin-prefix + - scripts/common/cygpath-prefix + - scripts/common/print.sh - scripts/babeltrace/build.sh - conditional-step: condition-kind: strings-match on-evaluation-failure: run - condition-string1: '${{arch}}' + condition-string1: {{ '${{arch}}' }} condition-string2: 'msys2-mingw64' steps: - inject: @@ -145,72 +129,103 @@ - shell: !include-raw-escape: - scripts/common/msys2-shebang - - scripts/common/cygwin-prefix + - scripts/common/cygpath-prefix + - scripts/common/print.sh - scripts/babeltrace/build.sh + {% else %} + - shell: + !include-raw-escape: + - scripts/common/print.sh + - scripts/babeltrace/build.sh + {% endif %} +# Use - in version number since yaml anchor do not support dot +- babeltrace_builders_glib-2-28-6: &babeltrace_builders_glib-2-28-6 + name: 'babeltrace_builders_glib-2-28-6' + builders: + - inject: + properties-content: | + LD_LIBRARY_PATH=$WORKSPACE/glib-2.28.6/BUILD_RESULT/lib + PKG_CONFIG_PATH=$WORKSPACE/glib-2.28.6/BUILD_RESULT/lib/pkgconfig + arch=amd64 + conf=std + build=std + - shell: | + wget http://ftp.gnome.org/pub/gnome/sources/glib/2.28/glib-2.28.6.tar.gz + tar xvf glib-2.28.6.tar.gz + cd glib-2.28.6 + mkdir BUILD_RESULT + ./configure --prefix=$WORKSPACE/glib-2.28.6/BUILD_RESULT + make -j `nproc` >/dev/null 2>&1 # Hide warnings + make install + - shell: + !include-raw-escape: + - scripts/common/print.sh + - scripts/babeltrace/build.sh -- babeltrace_build_publishers_dev: &babeltrace_build_publishers_dev - name: 'babeltrace_build_publishers_dev' - publishers: - - tap: - results: 'tap/**/*.log' - failed-tests-mark-build-as-failure: true - todo-is-failure: false - - warnings: - console-log-parsers: - - 'GNU Make + GNU C Compiler (gcc)' - total-thresholds: - unstable: - total-all: 0 - total-high: 0 - total-normal: 0 - total-low: 0 - - archive: - artifacts: 'tap/**' - allow-empty: false - - email-ext: - recipients: '{obj:email_to}' - always: false - unstable: false - first-failure: true - first-unstable: true - not-built: false - aborted: false - regression: false - failure: false - second-failure: false - improvement: false - still-failing: false - success: false - fixed: false - fixed-unhealthy: true - still-unstable: false - pre-build: false - matrix-trigger: only-parent - send-to: - - recipients - - -- babeltrace_build_publishers_prod: &babeltrace_build_publishers_prod - name: 'babeltrace_build_publishers_prod' +- babeltrace_publishers_defaults: &babeltrace_publishers_defaults + name: 'babeltrace_publishers_defaults' publishers: - - tap: + - tap: &babeltrace_publisher_tap_defaults results: 'tap/**/*.log' + fail-if-no-results: true failed-tests-mark-build-as-failure: true todo-is-failure: false - - warnings: - console-log-parsers: - - 'GNU Make + GNU C Compiler (gcc)' - total-thresholds: - unstable: - total-all: 0 - total-high: 0 - total-normal: 0 - total-low: 0 - - archive: + - raw: &babeltrace_publisher_warnings-ng_defaults + xml: | + + + + + + + + + false + + + + + + + + false + + + + + + false + true + false + 0 + 0 + + LOW + + + true + true + false + true + false + + + 1 + TOTAL + WARNING + + + AGGREGATION_TOOLS + + + - archive: &babeltrace_publisher_archive_defaults artifacts: 'build/**,tap/**' allow-empty: false - - email-ext: + - workspace-cleanup: &babeltrace_publisher_workspace-cleanup_defaults + clean-if: + - failure: false + - email-ext: &babeltrace_publisher_email-ext_defaults recipients: '{obj:email_to}' reply-to: ci-notification@lists.lttng.org always: false @@ -233,75 +248,156 @@ send-to: - recipients -- babeltrace_build_publishers_gerrit: &babeltrace_build_publishers_gerrit - name: 'babeltrace_build_publishers_gerrit' +- babeltrace_publishers_gerrit: &babeltrace_publishers_gerrit + name: 'babeltrace_publishers_gerrit' publishers: - - tap: - results: 'tap/**/*.log' - failed-tests-mark-build-as-failure: true - todo-is-failure: false - - warnings: - console-log-parsers: - - 'GNU Make + GNU C Compiler (gcc)' - total-thresholds: - unstable: - total-all: 0 - total-high: 0 - total-normal: 0 - total-low: 0 - - archive: - artifacts: 'build/**,tap/**' - allow-empty: false - - -## Templates + - tap: *babeltrace_publisher_tap_defaults + # Fail job on any compiler warnings + - raw: + xml: | + + + + + + + + + false + + + + + + + + false + + + + + + false + true + false + 0 + 0 + + LOW + + + true + true + false + true + false + + + 1 + TOTAL + FAILED + + + AGGREGATION_TOOLS + + + - archive: *babeltrace_publisher_archive_defaults + - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults + + +## Job Templates - job-template: - name: babeltrace_{version}_{buildtype} + name: '{job_prefix}babeltrace_{version}_{buildtype}' defaults: babeltrace - <<: *babeltrace_build_axes_defaults - <<: *babeltrace_build_builders_defaults - <<: *babeltrace_build_publishers_prod + <<: *babeltrace_matrix_axes_defaults + <<: *babeltrace_builders_defaults + <<: *babeltrace_publishers_defaults - job-template: name: babeltrace_{version}_{cctype} defaults: babeltrace - <<: *babeltrace_build_axes_cc - <<: *babeltrace_build_builders_defaults - <<: *babeltrace_build_publishers_prod + <<: *babeltrace_matrix_axes_cc + <<: *babeltrace_builders_defaults + <<: *babeltrace_publishers_defaults - job-template: - name: babeltrace_{version}_winbuild + name: dev_gerrit_babeltrace_{buildtype} defaults: babeltrace + concurrent: true - # Use jgit on windows to work around path too long error scm: - git: - url: git://github.com/{github_user}/{github_name}.git - browser: githubweb - browser-url: https://github.com/{github_user}/{github_name} + url: https://review.lttng.org/babeltrace + refspec: 'refs/changes/*:refs/changes/*' branches: - - origin/{version} + - '$GERRIT_REFSPEC' basedir: src/babeltrace skip-tag: true - git-tool: jgit - <<: *babeltrace_build_axes_defaults - <<: *babeltrace_build_builders_win - <<: *babeltrace_build_publishers_prod + triggers: + - gerrit: + trigger-on: + - comment-added-event: + approval-category: 'CI-Build' + approval-value: 1 + projects: + - project-compare-type: 'PLAIN' + project-pattern: 'babeltrace' + branches: + - branch-compare-type: 'ANT' + branch-pattern: '**' + + properties: + - inject: + properties-content: | + PROJECT_NAME=babeltrace + - build-discarder: + days-to-keep: 1 + - throttle: + option: 'category' + categories: + - 'gerrit-{buildtype}' + + <<: *babeltrace_matrix_axes_defaults + <<: *babeltrace_builders_defaults + <<: *babeltrace_publishers_gerrit - job-template: - name: dev_{user}_babeltrace_{version}_{buildtype} + name: babeltrace_{version}_release defaults: babeltrace + node: 'amd64' - <<: *babeltrace_build_axes_defaults - <<: *babeltrace_build_builders_defaults - <<: *babeltrace_build_publishers_dev + triggers: + - pollscm: + cron: "@daily" + + scm: + - git: + url: https://github.com/{github_user}/{github_name}.git + browser: githubweb + browser-url: https://github.com/{github_user}/{github_name} + refspec: '+refs/tags/*:refs/remotes/origin/tags/*' + branches: + - '*/tags/{version}.*' + basedir: src/babeltrace + + builders: + - shell: + !include-raw-escape: scripts/babeltrace/release.sh + + publishers: + - tap: *babeltrace_publisher_tap_defaults + - raw: *babeltrace_publisher_warnings-ng_defaults + - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults + - archive: + artifacts: 'out/**,tap/**' + allow-empty: false - job-template: - name: dev_gerrit_babeltrace_{buildtype} + name: dev_gerrit_babeltrace_pylint defaults: babeltrace concurrent: true @@ -326,38 +422,19 @@ branches: - branch-compare-type: 'ANT' branch-pattern: '**' - trigger-for-unreviewed-patches: true - project-type: matrix - node: 'master' # Applies only to matrix flyweight task - execution-strategy: - combination-filter: | - (build=="std" && conf=="std") || (arch=="amd64") - axes: - - axis: - type: slave - name: arch - values: '{obj:arch}' - - axis: - type: user-defined - name: conf - values: '{obj:conf}' - - axis: - type: user-defined - name: build - values: '{obj:build}' + node: 'amd64' - <<: *babeltrace_build_builders_defaults - <<: *babeltrace_build_publishers_gerrit + builders: + - shell: + !include-raw-escape: scripts/babeltrace/pylint.sh properties: - inject: properties-content: | PROJECT_NAME=babeltrace - build-discarder: - days-to-keep: 2 - - github: - url: https://github.com/{github_user}/{github_name} + days-to-keep: 1 - job-template: name: babeltrace_{version}_cppcheck @@ -373,6 +450,7 @@ cppcheck --enable=all --xml --xml-version=2 $WORKSPACE/src/babeltrace 2> cppcheck-result.xml publishers: + - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults - archive: artifacts: 'cppcheck-result.xml' allow-empty: false @@ -393,6 +471,7 @@ !include-raw-escape: scripts/common/scan-build.sh publishers: + - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults - html-publisher: name: 'HTML Report' dir: 'scan-build-archive/' @@ -408,21 +487,22 @@ cron: "@daily" wrappers: - - workspace-cleanup + - ansicolor: *babeltrace_wrapper_ansicolor_defaults + - timeout: *babeltrace_wrapper_timeout_defaults - timestamps - - ansicolor: - colormap: xterm + - workspace-cleanup - credentials-binding: - username-password-separated: credential-id: babeltrace_coverity_token username: COVERITY_SCAN_PROJECT_NAME password: COVERITY_SCAN_TOKEN + builders: - shell: !include-raw-escape: scripts/common/coverity.sh publishers: - - workspace-cleanup + - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults - archive: artifacts: 'analysis-results.tgz,cov-int/**' allow-empty: false @@ -432,282 +512,238 @@ defaults: babeltrace node: 'amd64' - scm: [] - triggers: - pollscm: cron: "@daily" builders: - - copyartifact: - project: babeltrace_{version}_build/arch=amd64,build=std,conf=python-bindings - which-build: last-successful - stable: false - filter: 'build/**' - target: 'deps/babeltrace' - shell: !include-raw-escape: scripts/babeltrace/pylint.sh publishers: + - workspace-cleanup: *babeltrace_publisher_workspace-cleanup_defaults - archive: - artifacts: 'pep8.out,pylint.out' - - violations: - pep8: - pattern: pep8.out - min: 10 - max: 999 - unstable: 999 - pylint: - pattern: pylint.out - min: 10 - max: 999 - unstable: 999 - - email-ext: - recipients: '{obj:email_to}' - reply-to: ci-notification@lists.lttng.org - always: false - unstable: false - first-failure: true - first-unstable: true - not-built: false - aborted: false - regression: false - failure: false - second-failure: false - improvement: false - still-failing: false - success: false - fixed: false - fixed-unhealthy: true - still-unstable: false - pre-build: false - matrix-trigger: only-parent - send-to: - - recipients + artifacts: 'black.out,flake8.out' + allow-empty: false + - email-ext: *babeltrace_publisher_email-ext_defaults -# Use - in version number since yaml anchor do not support dot -- babeltrace_version_glib-2-22-5_anchor: &babeltrace_version_glib-2-22-5_anchor - name: 'babeltrace_version_glib_anchor' +- job-template: + name: '{job_prefix}babeltrace_{version}_glib-2.28.6' defaults: babeltrace node: 'amd64' - builders: - - inject: - properties-content: | - LD_LIBRARY_PATH=$WORKSPACE/glib-2.22.5/BUILD_RESULT/lib - PKG_CONFIG_PATH=$WORKSPACE/glib-2.22.5/BUILD_RESULT/lib/pkgconfig - arch=amd64 - conf=std - build=std - - shell: | - wget http://ftp.gnome.org/pub/gnome/sources/glib/2.22/glib-2.22.5.tar.gz - tar xvf glib-2.22.5.tar.gz - cd glib-2.22.5 - mkdir BUILD_RESULT - ./configure --prefix=$WORKSPACE/glib-2.22.5/BUILD_RESULT - make -j `nproc` - make install + <<: *babeltrace_builders_glib-2-28-6 + <<: *babeltrace_publishers_defaults - - shell: - !include-raw-escape: scripts/babeltrace/build.sh - -- job-template: - name: babeltrace_{version}_glib-2.22.5 - triggers: - - pollscm: - cron: "@daily" - <<: *babeltrace_version_glib-2-22-5_anchor - publishers: - - archive: - artifacts: 'tap/**' - allow-empty: false - - email-ext: - recipients: '{obj:email_to}' - reply-to: ci-notification@lists.lttng.org - always: false - unstable: false - first-failure: true - first-unstable: true - not-built: false - aborted: false - regression: false - failure: false - second-failure: false - improvement: false - still-failing: false - success: false - fixed: false - fixed-unhealthy: true - still-unstable: false - pre-build: false - matrix-trigger: only-parent - send-to: - - recipients -- job-template: - name: dev_{user}_babeltrace_{version}_glib-2.22.5 - <<: *babeltrace_version_glib-2-22-5_anchor +## Views +- view-template: + name: 'Babeltrace' + view-type: list + regex: 'babeltrace[-_].*' - publishers: - - email-ext: - recipients: '{obj:email_to}' - reply-to: ci-notification@lists.lttng.org - always: false - unstable: false - first-failure: true - first-unstable: true - not-built: false - aborted: false - regression: false - failure: false - second-failure: false - improvement: false - still-failing: false - success: false - fixed: false - fixed-unhealthy: true - still-unstable: false - pre-build: false - matrix-trigger: only-parent - send-to: - - recipients -## Project +## Projects - project: - name: babeltrace1 + name: babeltrace2 + job_prefix: '' github_user: efficios github_name: babeltrace email_to: 'ci-notification@lists.lttng.org, cc:jgalar@efficios.com' version: - - stable-1.5 + - stable-2.0 + - master jobs: - - 'babeltrace_{version}_{buildtype}': + - '{job_prefix}babeltrace_{version}_{buildtype}': buildtype: build - arch: !!python/tuple [amd64] - build: !!python/tuple [std, oot, dist, oot-dist] - conf: !!python/tuple [std, static, python-bindings] - - 'babeltrace_{version}_{buildtype}': + archs: !!python/tuple [amd64] + builds: !!python/tuple [std, oot, dist, oot-dist] + confs: !!python/tuple [std, static, prod, min, doc] + filter: '' + touchstone: '(build == "std") && (conf == "std")' + - '{job_prefix}babeltrace_{version}_{buildtype}': buildtype: portbuild - arch: !!python/tuple [armhf, arm64, powerpc, ppc64el, i386] - build: !!python/tuple [std] - conf: !!python/tuple [std, python-bindings] - - 'babeltrace_{version}_{buildtype}': + archs: !!python/tuple [armhf, arm64, powerpc, ppc64el, i386] + builds: !!python/tuple [std] + confs: !!python/tuple [std, prod] + filter: '' + touchstone: '(build == "std") && (conf == "std") && (arch == "i386")' + - '{job_prefix}babeltrace_{version}_{buildtype}': buildtype: slesbuild - arch: !!python/tuple [sles12sp2] - build: !!python/tuple [std] - conf: !!python/tuple [std] - version: # // support 1.3 on SLES12 - - stable-1.3 - - stable-1.5 - - 'babeltrace_{version}_{buildtype}': - buildtype: solarisbuild - arch: !!python/tuple [sol10-i386, sol11-i386] - build: !!python/tuple [std] - conf: !!python/tuple [std, static] - - 'babeltrace_{version}_{buildtype}': - buildtype: macosxbuild - arch: !!python/tuple [macosx] - build: !!python/tuple [std] - conf: !!python/tuple [std, python-bindings] + archs: !!python/tuple [sles12sp5] + builds: !!python/tuple [std] + confs: !!python/tuple [std, prod] + filter: '' + touchstone: '' + - '{job_prefix}babeltrace_{version}_{buildtype}': + buildtype: elbuild + archs: !!python/tuple [el7, el8, el9] + builds: !!python/tuple [std] + confs: !!python/tuple [std, prod] + filter: '' + touchstone: '' + - '{job_prefix}babeltrace_{version}_{buildtype}': + buildtype: macosbuild + archs: !!python/tuple [macos-amd64, macos-arm64] + builds: !!python/tuple [std] + confs: !!python/tuple [std, prod] + filter: '' + touchstone: '' + - '{job_prefix}babeltrace_{version}_{buildtype}': + buildtype: freebsdbuild + archs: !!python/tuple [freebsd] + builds: !!python/tuple [std] + confs: !!python/tuple [std, prod] + filter: '' + touchstone: '' + - '{job_prefix}babeltrace_{version}_{buildtype}': + buildtype: winbuild + archs: !!python/tuple [cygwin64, msys2-mingw32, msys2-mingw64] + builds: !!python/tuple [std] + confs: !!python/tuple [std] + filter: '' + touchstone: '' - 'babeltrace_{version}_{cctype}': cctype: clangbuild - arch: !!python/tuple [amd64] - build: !!python/tuple [std] - conf: !!python/tuple [std, static] - cc: !!python/tuple [clang-3.9, clang-4.0, clang-6.0, clang-7] - - 'babeltrace_{version}_winbuild': - arch: !!python/tuple [cygwin, cygwin64] - build: !!python/tuple [std] - conf: !!python/tuple [std] + archs: !!python/tuple [amd64] + builds: !!python/tuple [std] + confs: !!python/tuple [std, static, prod] + ccs: !!python/tuple [clang-3.9, clang-4.0, clang-6.0, clang-7] + filter: '' + touchstone: '' + - 'babeltrace_{version}_release': + version: v2.0 - 'babeltrace_{version}_cppcheck' - 'babeltrace_{version}_scan-build' - 'babeltrace_{version}_pylint' + - 'babeltrace_{version}_coverity': + version: master + - '{job_prefix}babeltrace_{version}_glib-2.28.6': + version: master - project: - name: babeltrace2 + name: gerrit-babeltrace + job_prefix: '' + github_user: efficios + github_name: babeltrace + jobs: + - 'dev_gerrit_babeltrace_{buildtype}': + buildtype: build + archs: !!python/tuple [amd64, armhf, arm64, powerpc, ppc64el, i386] + builds: !!python/tuple [std, oot, dist, oot-dist] + confs: !!python/tuple [std, static, prod, min] + filter: '(build=="std" && conf=="std") || (arch=="amd64")' + touchstone: '' + - 'dev_gerrit_babeltrace_{buildtype}': + buildtype: macosbuild + archs: !!python/tuple [macos-amd64, macos-arm64] + builds: !!python/tuple [std] + confs: !!python/tuple [std, prod] + filter: '' + touchstone: '' + - 'dev_gerrit_babeltrace_{buildtype}': + buildtype: winbuild + archs: !!python/tuple [cygwin64, msys2-mingw64] + builds: !!python/tuple [std] + confs: !!python/tuple [std] + filter: '' + touchstone: '' + - 'dev_gerrit_babeltrace_pylint' + + +- project: + name: dev_upstream_babeltrace + job_prefix: dev_upstream_ github_user: efficios github_name: babeltrace email_to: 'ci-notification@lists.lttng.org, cc:jgalar@efficios.com' version: - - stable-2.0 - - master + - stable-1.5 jobs: - - 'babeltrace_{version}_{buildtype}': + - '{job_prefix}babeltrace_{version}_{buildtype}': buildtype: build - arch: !!python/tuple [amd64] - build: !!python/tuple [std, oot, dist, oot-dist] - conf: !!python/tuple [std, static, prod, min] - - 'babeltrace_{version}_{buildtype}': + archs: !!python/tuple [amd64] + builds: !!python/tuple [std, oot, dist, oot-dist] + confs: !!python/tuple [std, static, python-bindings] + filter: '' + touchstone: '(build == "std") && (conf == "std")' + - '{job_prefix}babeltrace_{version}_{buildtype}': buildtype: portbuild - arch: !!python/tuple [armhf, arm64, powerpc, ppc64el, i386] - build: !!python/tuple [std] - conf: !!python/tuple [std, prod] - - 'babeltrace_{version}_{buildtype}': + archs: !!python/tuple [armhf, arm64, powerpc, ppc64el, i386] + builds: !!python/tuple [std] + confs: !!python/tuple [std, python-bindings] + filter: '' + touchstone: '(build == "std") && (conf == "std") && (arch == "i386")' + - '{job_prefix}babeltrace_{version}_{buildtype}': buildtype: slesbuild - arch: !!python/tuple [sles12sp2] - build: !!python/tuple [std] - conf: !!python/tuple [std, prod] - - 'babeltrace_{version}_{buildtype}': - buildtype: macosxbuild - arch: !!python/tuple [macosx] - build: !!python/tuple [std] - conf: !!python/tuple [std, prod] - - 'babeltrace_{version}_{cctype}': - cctype: clangbuild - arch: !!python/tuple [amd64] - build: !!python/tuple [std] - conf: !!python/tuple [std, static, prod] - cc: !!python/tuple [clang-3.9, clang-4.0, clang-6.0, clang-7] - - 'babeltrace_{version}_winbuild': - arch: !!python/tuple [cygwin, cygwin64, msys2-mingw32, msys2-mingw64] - build: !!python/tuple [std] - conf: !!python/tuple [std] - - 'babeltrace_{version}_cppcheck' - - 'babeltrace_{version}_scan-build' - - 'babeltrace_{version}_pylint' - - 'babeltrace_{version}_coverity': - version: master - - 'babeltrace_{version}_glib-2.22.5': - version: master + archs: !!python/tuple [sles12sp5] + builds: !!python/tuple [std] + confs: !!python/tuple [std] + filter: '' + touchstone: '' + - '{job_prefix}babeltrace_{version}_{buildtype}': + buildtype: elbuild + archs: !!python/tuple [el7, el8, el9] + builds: !!python/tuple [std] + confs: !!python/tuple [std] + filter: '' + touchstone: '' + - project: name: babeltrace-jgalar-staging - user: jgalar + job_prefix: 'dev_jgalar_' github_user: jgalar github_name: babeltrace email_to: "jgalar@efficios.com" version: - - stable-1.3-staging - stable-1.5-staging - - stable-2.0-staging - - master-staging jobs: - - 'dev_{user}_babeltrace_{version}_glib-2.22.5': - version: - - master-staging - - 'dev_{user}_babeltrace_{version}_{buildtype}': + - '{job_prefix}babeltrace_{version}_{buildtype}': buildtype: build - arch: !!python/tuple [amd64] - build: !!python/tuple [std, oot, dist, oot-dist] - conf: !!python/tuple [std, static, python-bindings] - - 'dev_{user}_babeltrace_{version}_{buildtype}': - buildtype: macosxbuild - version: # macOS support was introduced in 1.4 - - stable-1.5-staging - - stable-2.0-staging - - master-staging - arch: !!python/tuple [macosx] - build: !!python/tuple [std] - conf: !!python/tuple [std] + archs: !!python/tuple [amd64] + builds: !!python/tuple [std, oot, dist, oot-dist] + confs: !!python/tuple [std, static, python-bindings] + filter: '' + touchstone: '' + - '{job_prefix}babeltrace_{version}_{buildtype}': + buildtype: macosbuild + archs: !!python/tuple [macos-amd64, macos-arm64] + builds: !!python/tuple [std] + confs: !!python/tuple [std] + filter: '' + touchstone: '' - project: - name: gerrit-babeltrace - github_user: efficios + name: babeltrace2-jgalar-staging + job_prefix: 'dev_jgalar_' + github_user: jgalar github_name: babeltrace + email_to: "jgalar@efficios.com" + version: + - stable-2.0-staging + - master-staging jobs: - - 'dev_gerrit_babeltrace_{buildtype}': + - '{job_prefix}babeltrace_{version}_glib-2.28.6': + version: + - master-staging + - '{job_prefix}babeltrace_{version}_{buildtype}': buildtype: build - arch: !!python/tuple [amd64, armhf, arm64, powerpc, ppc64el, i386] - build: !!python/tuple [std, oot, dist, oot-dist] - conf: !!python/tuple [std, static, prod, min] + archs: !!python/tuple [amd64] + builds: !!python/tuple [std, oot, dist, oot-dist] + confs: !!python/tuple [std, static, prod, min] + filter: '' + touchstone: '' + - '{job_prefix}babeltrace_{version}_{buildtype}': + buildtype: macosbuild + archs: !!python/tuple [macos-amd64, macos-arm64] + builds: !!python/tuple [std] + confs: !!python/tuple [std, prod] + filter: '' + touchstone: '' + +- project: + name: babeltrace-views + views: + - Babeltrace