- defaults: name: lttng-ust description: | LTTng-UST, the Linux Trace Toolkit Next Generation Userspace Tracer, is a port of the low-overhead tracing capabilities of the LTTng kernel tracer to user-space. The library "liblttng-ust" enables tracing of applications and libraries.

Job is managed by Jenkins Job Builder.

project-type: freestyle wrappers: - workspace-cleanup - timestamps - ansicolor scm: - git: url: git://github.com/{github_user}/{github_name}.git browser: githubweb browser-url: https://github.com/{github_user}/{github_name} branches: - origin/{version} basedir: src/lttng-ust skip-tag: true triggers: - pollscm: cron: "@hourly" properties: - inject: properties-content: | PROJECT_NAME=lttng-ust - build-discarder: num-to-keep: 2 - github: url: https://github.com/{github_user}/{github_name} ## Templates - job-template: name: lttng-ust_{version}_{buildtype} defaults: lttng-ust project-type: matrix node: 'master' # Applies only to matrix flyweight task execution-strategy: combination-filter: | (build=="std") || (liburcu_version=="master") axes: - axis: type: slave name: arch values: '{obj:arch}' - axis: type: user-defined name: conf values: '{obj:conf}' - axis: type: user-defined name: liburcu_version values: '{obj:liburcu_version}' - axis: type: user-defined name: build values: '{obj:build}' builders: - conditional-step: condition-kind: regex-match label: '$conf' regex: (std|agents) on-evaluation-failure: run steps: - copyartifact: project: liburcu_${{liburcu_version}}_{buildtype}/arch=$arch,conf=std,build=std which-build: last-successful stable: false filter: 'build/**' target: 'deps/liburcu' do-not-fingerprint: true - conditional-step: condition-kind: regex-match label: '$conf' regex: (debug-rcu) on-evaluation-failure: run steps: - copyartifact: project: liburcu_${{liburcu_version}}_{buildtype}/arch=$arch,conf=debug-rcu,build=std which-build: last-successful stable: false filter: 'build/**' target: 'deps/liburcu' do-not-fingerprint: true - shell: !include-raw-escape: scripts/lttng-ust/build.sh # TODO: Scan for open tasks 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/**' allow-empty: false - workspace-cleanup - ircbot: strategy: new-failure-and-fixed matrix-notifier: only-parent channels: - name: '#lttng' - job-template: name: lttng-ust_{version}_cppcheck defaults: lttng-ust triggers: - pollscm: cron: "@daily" builders: - shell: | rm -f lttng-ust-cppcheck.xml cppcheck --enable=all --xml --xml-version=2 $WORKSPACE/src/lttng-ust 2> lttng-ust-cppcheck.xml publishers: - archive: artifacts: 'lttng-ust-cppcheck.xml' allow-empty: false - cppcheck: pattern: 'lttng-ust-cppcheck.xml' - email: recipients: 'ci-notification@lists.lttng.org' notify-every-unstable-build: true send-to-individuals: false - job-template: name: lttng-ust_{version}_scan-build defaults: lttng-ust node: 'x86-64' triggers: - pollscm: cron: "@daily" builders: - copyartifact: project: liburcu_master_build/arch=x86-64,conf=std,build=std which-build: last-successful stable: false filter: 'build/**' target: 'deps/liburcu' do-not-fingerprint: true - shell: !include-raw-escape: scripts/common/scan-build.sh publishers: - html-publisher: name: 'HTML Report' dir: 'scan-build-archive/' files: 'index.html' - job-template: name: lttng-ust_{version}_coverity defaults: lttng-ust node: 'x86-64' triggers: - pollscm: cron: "@daily" wrappers: - workspace-cleanup - timestamps - ansicolor: colormap: xterm - credentials-binding: - username-password-separated: credential-id: lttng-ust_coverity_token username: COVERITY_SCAN_PROJECT_NAME password: COVERITY_SCAN_TOKEN builders: - copyartifact: project: liburcu_master_build/arch=x86-64,conf=std,build=std which-build: last-successful stable: false filter: 'build/**' target: 'deps/liburcu' do-not-fingerprint: true - shell: !include-raw-escape: scripts/common/coverity.sh publishers: - workspace-cleanup - archive: artifacts: 'analysis-results.tgz,cov-int/**' allow-empty: false # TODO - job-template: name: lttng-ust_{version}_pylint defaults: lttng-ust node: 'x86-64' scm: [] triggers: - pollscm: cron: "@daily" builders: - copyartifact: project: lttng-ust-{version}/arch=x86-64,build=std,conf=agents which-build: last-successful stable: false filter: 'build/**' target: 'deps/lttng-ust' do-not-fingerprint: true - shell: !include-raw-escape: scripts/lttng-ust/pylint.sh publishers: - 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: recipients: 'ci-notification@lists.lttng.org' notify-every-unstable-build: true send-to-individuals: false ## Project - project: name: lttng-ust github_user: lttng github_name: lttng-ust version: - stable-2.7 - stable-2.8 - stable-2.9 - stable-2.10 - master jobs: - 'lttng-ust_{version}_{buildtype}': buildtype: build arch: !!python/tuple [x86-32, x86-64] build: !!python/tuple [std, dist, oot, oot-dist] conf: !!python/tuple [std, agents, debug-rcu] liburcu_version: !!python/tuple [stable-0.8, stable-0.9, stable-0.10, master] - 'lttng-ust_{version}_{buildtype}': buildtype: portbuild arch: !!python/tuple [armhf, arm64, powerpc, ppc64el] build: !!python/tuple [std] conf: !!python/tuple [std, agents] liburcu_version: !!python/tuple [stable-0.8, stable-0.9, stable-0.10, master] - 'lttng-ust_{version}_{buildtype}': buildtype: slesbuild arch: !!python/tuple [sles12sp2] build: !!python/tuple [std] conf: !!python/tuple [std] liburcu_version: !!python/tuple [stable-0.8, stable-0.9, stable-0.10, master] - 'lttng-ust_{version}_cppcheck' - 'lttng-ust_{version}_scan-build' - 'lttng-ust_{version}_coverity': version: master