diff --git a/jobs/swh-docs.yaml b/jobs/swh-docs.yaml --- a/jobs/swh-docs.yaml +++ b/jobs/swh-docs.yaml @@ -2,11 +2,12 @@ name: DDOC display-name: swh-docs jobs: - - "{name}" + - "{name}/publish" + - "{name}/dev" + - "{name}/build-on-diff" - -- job: - name: DDOC/publish +- job-template: + name: "{name}/publish" description: Build the documentation and publish it node: swh-sphinx auth-token: ph4br1cat0r @@ -30,33 +31,32 @@ publishers: - ssh: - target: 'devel' - site: 'pergamon' + target: "devel" + site: "pergamon" clean-remote: true - source: 'swh-docs/docs/_build/html/**' - remove-prefix: 'swh-docs/docs/_build/html' + source: "swh-docs/docs/_build/html/**" + remove-prefix: "swh-docs/docs/_build/html" fail-on-error: true verbose: true - ssh: - target: 'user' - site: 'pergamon' + target: "user" + site: "pergamon" clean-remote: true - source: 'swh-docs/user/_build/html/**' - remove-prefix: 'swh-docs/user/_build/html' + source: "swh-docs/user/_build/html/**" + remove-prefix: "swh-docs/user/_build/html" fail-on-error: true verbose: true - ssh: - target: 'sysadm' - site: 'pergamon' + target: "sysadm" + site: "pergamon" clean-remote: true - source: 'swh-docs/sysadm/_build/html/**' - remove-prefix: 'swh-docs/sysadm/_build/html' + source: "swh-docs/sysadm/_build/html/**" + remove-prefix: "swh-docs/sysadm/_build/html" fail-on-error: true verbose: true - -- job: - name: DDOC/dev +- job-template: + name: "{name}/dev" description: Build the documentation from git repos node: swh-sphinx auth-token: ph4br1cat0r @@ -83,20 +83,52 @@ - archive: artifacts: "revisions.txt,swh-docs/docs/errors.log,swh-docs/.tox/log/*" - html-publisher: - name: 'SWH Documentation (HEAD)' - dir: 'swh-docs/docs/_build/html' - files: 'index.html' + name: "SWH Documentation (HEAD)" + dir: "swh-docs/docs/_build/html" + files: "index.html" keep-all: false - includes: '**/*' + includes: "**/*" - html-publisher: - name: 'SWH User Documentation (HEAD)' - dir: 'swh-docs/user/_build/html' - files: 'index.html' + name: "SWH User Documentation (HEAD)" + dir: "swh-docs/user/_build/html" + files: "index.html" keep-all: false - includes: '**/*' + includes: "**/*" - html-publisher: - name: 'SWH sysadmin Documentation (HEAD)' - dir: 'swh-docs/sysadm/_build/html' - files: 'index.html' + name: "SWH sysadmin Documentation (HEAD)" + dir: "swh-docs/sysadm/_build/html" + files: "index.html" keep-all: false - includes: '**/*' + includes: "**/*" + +- job-template: + name: "{name}/build-on-diff" + display_name: Phab. diff + project-type: pipeline + docker_image: sphinx + concurrent: true + sandbox: true + auth-token: "ph4br1cat0r" + properties: + - build-discarder: + artifact-num-to-keep: 20 + parameters: + - git-parameter: + name: REVISION + type: PT_REVISION + defaultValue: master + description: Git revision to build. + - string: + name: PHID + description: PHID of the Phabricator target object on which results will be reported. + - string: + name: DIFF_ID + description: ID of the Diff patch to apply, if any + - string: + name: REV_ID + description: ID of the Phabricator revision, if any + - string: + name: STAGING_URI + description: URI of the staging repository + + dsl: !include-jinja2: templates/swh-docs-pipeline-diff.groovy.j2 diff --git a/jobs/templates/includes/script-apply-phabricator-diff.groovy.j2 b/jobs/templates/includes/script-apply-phabricator-diff.groovy.j2 new file mode 100644 --- /dev/null +++ b/jobs/templates/includes/script-apply-phabricator-diff.groovy.j2 @@ -0,0 +1,65 @@ +script { + comment = sh( + script: ''' + #!/bin/bash + set -e + + ORIGINAL_TAG=base-revision-${BUILD_NUMBER}-D${REV_ID} + ORIGINAL_COMMIT=$(git rev-parse --short=10 HEAD) + echo "==== Patch application report for D${REV_ID} (id=${DIFF_ID}) ====" + echo + git tag -f ${ORIGINAL_TAG} >/dev/null + git fetch -n ${STAGING_URI} +refs/tags/phabricator/diff/${DIFF_ID}:diff-target +refs/tags/phabricator/base/${DIFF_ID}:diff-base >/dev/null + rebased=0 + if git merge-base --is-ancestor diff-base HEAD; then + echo "**Rebasing** onto ${ORIGINAL_COMMIT}..." + echo + echo '```' + git rebase --onto ${ORIGINAL_TAG} diff-base diff-target && rebased=1 || rebase_exit=$? + echo '```' + if [ $rebased -eq 0 ]; then + echo + echo "Rebase failed (ret=${rebase_exit})!" + echo + echo '```' + git rebase --abort || true + echo '```' + fi + fi + + merged=0 + if [ $rebased -eq 0 ]; then + echo "Could not rebase; Attempt **merge** onto ${ORIGINAL_COMMIT}..." + echo + echo '```' + git merge --no-edit diff-target && merged=1 || merge_exit=$? + echo '```' + if [ $merged -eq 0 ]; then + echo + echo "Merge failed (ret=${merge_exit})!" + echo + fi + fi + + if [ $merged -eq 1 -o $rebased -eq 1 ]; then + echo + echo "===== Changes applied before test =====" + echo + echo '```' + git log ${ORIGINAL_TAG}.. + echo '```' + else + echo '**Attempts to apply the diff failed!**' + exit 1 + fi + git tag -d ${ORIGINAL_TAG} >/dev/null + ''', + label: 'Apply patch', + returnStdout: true, + ) + + writeFile( + file: '.phabricator-comment', + text: comment, + ) +} diff --git a/jobs/templates/includes/stage-apply-phabricator-diff.groovy.j2 b/jobs/templates/includes/stage-apply-phabricator-diff.groovy.j2 deleted file mode 100644 --- a/jobs/templates/includes/stage-apply-phabricator-diff.groovy.j2 +++ /dev/null @@ -1,69 +0,0 @@ -stage('Apply phabricator diff') { - steps { - script { - comment = sh( - script: ''' - #!/bin/bash - set -e - - ORIGINAL_TAG=base-revision-${BUILD_NUMBER}-D${REV_ID} - ORIGINAL_COMMIT=$(git rev-parse --short=10 HEAD) - echo "==== Patch application report for D${REV_ID} (id=${DIFF_ID}) ====" - echo - git tag -f ${ORIGINAL_TAG} >/dev/null - git fetch -n ${STAGING_URI} +refs/tags/phabricator/diff/${DIFF_ID}:diff-target +refs/tags/phabricator/base/${DIFF_ID}:diff-base >/dev/null - rebased=0 - if git merge-base --is-ancestor diff-base HEAD; then - echo "**Rebasing** onto ${ORIGINAL_COMMIT}..." - echo - echo '```' - git rebase --onto ${ORIGINAL_TAG} diff-base diff-target && rebased=1 || rebase_exit=$? - echo '```' - if [ $rebased -eq 0 ]; then - echo - echo "Rebase failed (ret=${rebase_exit})!" - echo - echo '```' - git rebase --abort || true - echo '```' - fi - fi - - merged=0 - if [ $rebased -eq 0 ]; then - echo "Could not rebase; Attempt **merge** onto ${ORIGINAL_COMMIT}..." - echo - echo '```' - git merge --no-edit diff-target && merged=1 || merge_exit=$? - echo '```' - if [ $merged -eq 0 ]; then - echo - echo "Merge failed (ret=${merge_exit})!" - echo - fi - fi - - if [ $merged -eq 1 -o $rebased -eq 1 ]; then - echo - echo "===== Changes applied before test =====" - echo - echo '```' - git log ${ORIGINAL_TAG}.. - echo '```' - else - echo '**Attempts to apply the diff failed!**' - exit 1 - fi - git tag -d ${ORIGINAL_TAG} >/dev/null - ''', - label: 'Apply patch', - returnStdout: true, - ) - - writeFile( - file: '.phabricator-comment', - text: comment, - ) - } - } -} diff --git a/jobs/templates/swh-docs-pipeline-diff.groovy.j2 b/jobs/templates/swh-docs-pipeline-diff.groovy.j2 new file mode 100644 --- /dev/null +++ b/jobs/templates/swh-docs-pipeline-diff.groovy.j2 @@ -0,0 +1,116 @@ +pipeline { + {% filter indent(width=2) %} + {%- include 'templates/includes/agent-docker.groovy.j2' -%} + {% endfilter %} + + environment { + PHAB_CONDUIT_URL = 'https://forge.softwareheritage.org/api/' + } + + stages { + stage('Checkout swh environment') { + steps { + {% filter indent(width=8) %} + {%- include 'templates/includes/create-phabricator-artifacts.groovy.j2' -%} + {% endfilter %} + checkout([ + $class: 'GitSCM', + doGenerateSubmoduleConfigurations: false, + extensions: [[$class: 'CloneOption', depth: 1, shallow: true]], + gitTool: 'Default', + submoduleCfg: [], + userRemoteConfigs: [ + [url: 'https://forge.softwareheritage.org/source/swh-environment.git'], + ], + ]) + } + } + + stage('Checkout swh modules') { + steps { + script { + sh'''#!/bin/bash + crudini --del .mrconfig snippets + crudini --del .mrconfig swh-py-template + # force shallow clone of swh-repos except swh-docs + sed -i '/swh-docs/!s/git clone/git clone --depth 1/g' .mrconfig + mr -j 4 -t update + ''' + } + } + } + + stage('Apply phabricator diff') { + steps { + dir('swh-docs') { + {% filter indent(width=10) %} + {%- include 'templates/includes/script-apply-phabricator-diff.groovy.j2' -%} + {% endfilter %} + } + } + } + + stage('Build Software Heritage documentation') { + steps { + dir('swh-docs') { + script { + sh '''#!/bin/bash + SPHINXOPTS='-W -q --keep-going -w errors.log' SPHINXOPTCOLOR='--no-color' tox -e sphinx-dev + ''' + } + } + } + } + } + + post { + always { + step([$class: 'PhabricatorNotifier', + commentOnSuccess: true, + commentWithConsoleLinkOnFailure: true, + commentFile: 'swh-docs/.phabricator-comment', + commentSize: '1000000', + preserveFormatting: true, + processLint: true, + lintFile: '.phabricator-lint', + lintFileSize: '1000000', + ]) + + archiveArtifacts( + allowEmptyArchive: true, + artifacts: 'swh-docs/docs/errors.log,swh-docs/.tox/log/*', + fingerprint: true, + ) + + publishHTML (target: [ + allowMissing: true, + alwaysLinkToLastBuild: false, + keepAll: true, + reportDir: 'swh-docs/docs/_build/html', + reportFiles: 'index.html', + reportName: 'SWH Documentation' + ]) + + publishHTML (target: [ + allowMissing: true, + alwaysLinkToLastBuild: false, + keepAll: true, + reportDir: 'swh-docs/user/_build/html', + reportFiles: 'index.html', + reportName: 'SWH User Documentation' + ]) + + publishHTML (target: [ + allowMissing: true, + alwaysLinkToLastBuild: false, + keepAll: true, + reportDir: 'swh-docs/sysadm/_build/html', + reportFiles: 'index.html', + reportName: 'SWH sysadmin Documentation' + ]) + } + cleanup { + cleanWs() + } + } +} \ No newline at end of file diff --git a/jobs/templates/swh-pipeline.groovy.j2 b/jobs/templates/swh-pipeline.groovy.j2 --- a/jobs/templates/swh-pipeline.groovy.j2 +++ b/jobs/templates/swh-pipeline.groovy.j2 @@ -29,9 +29,13 @@ } {%- if phabricator_diff %} - {% filter indent(width=4) %} - {%- include 'includes/stage-apply-phabricator-diff.groovy.j2' -%} - {% endfilter %} + stage('Apply phabricator diff') { + steps { + {% filter indent(width=8) %} + {%- include 'includes/script-apply-phabricator-diff.groovy.j2' -%} + {% endfilter %} + } + } {%- endif %} stage('Static analysis') { diff --git a/output b/output new file mode 100644 --- /dev/null +++ b/output @@ -0,0 +1,67814 @@ +test installed: certifi==2021.10.8,charset-normalizer==2.0.7,fasteners==0.16.3,idna==3.3,jenkins-job-builder @ git+https://framagit.org/douardda/jenkins-job-builder@c89bf11ef3dffacf8f9e97b01bcc59e3fcf6f655,Jinja2==3.0.2,MarkupSafe==2.0.1,multi-key-dict==2.0.3,pbr==5.6.0,python-jenkins==1.7.0,PyYAML==5.4.1,requests==2.26.0,six==1.16.0,stevedore==3.4.0,urllib3==1.26.7 +test run-test-pre: PYTHONHASHSEED='3378718169' +test run-test: commands[0] | jenkins-jobs test -r jobs +WARNING:jenkins_jobs.config:Config file, /etc/jenkins_jobs/jenkins_jobs.ini, not found. Using default config values. +INFO:jenkins_jobs.config:Will use anonymous access to Jenkins if needed. +WARNING:jenkins_jobs.cli.subcommand.test:(Deprecated) The default output behavior of `jenkins-jobs test` when given the --output flag will change in JJB 3.0. Instead of writing jobs to OUTPUT/jobname; they will be written to OUTPUT/jobname/config.xml. The new behavior can be enabled by the passing `--config-xml` parameter. +INFO:jenkins_jobs.cli.subcommand.update:Updating jobs in ['/home/anlambert/swh/swh-jenkins-jobs/jobs', '/home/anlambert/swh/swh-jenkins-jobs/jobs/debian', '/home/anlambert/swh/swh-jenkins-jobs/jobs/templates', '/home/anlambert/swh/swh-jenkins-jobs/jobs/tools', '/home/anlambert/swh/swh-jenkins-jobs/jobs/templates/debian', '/home/anlambert/swh/swh-jenkins-jobs/jobs/templates/includes'] ([]) +INFO:root:Caching type scm of scm = jenkins_jobs.modules.scm:SCM +INFO:root:Caching type triggers of triggers = jenkins_jobs.modules.triggers:Triggers +INFO:root:Caching type builders of builders = jenkins_jobs.modules.builders:Builders +INFO:root:Caching type publishers of publishers = jenkins_jobs.modules.publishers:Publishers +INFO:root:Caching type wrappers of wrappers = jenkins_jobs.modules.wrappers:Wrappers +INFO:root:Caching type properties of properties = jenkins_jobs.modules.properties:Properties +INFO:root:Caching type parameters of parameters = jenkins_jobs.modules.parameters:Parameters +INFO:jenkins_jobs.builder:Number of jobs generated: 370 +INFO:jenkins_jobs.builder:Job name: DAUTH +INFO:jenkins_jobs.builder:Job name: DAUTH/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-auth + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DAUTH/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DAUTH/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DAUTH/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DCIDX +INFO:jenkins_jobs.builder:Job name: DCIDX/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-indexer + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DCIDX/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DCIDX/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DCIDX/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DCNT +INFO:jenkins_jobs.builder:Job name: DCNT/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-counters + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DCNT/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DCNT/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DCNT/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DCORE +INFO:jenkins_jobs.builder:Job name: DCORE/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-core + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DCORE/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DCORE/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DCORE/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DDATASET +INFO:jenkins_jobs.builder:Job name: DDATASET/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-dataset + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DDATASET/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DDATASET/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DDATASET/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DDEP +INFO:jenkins_jobs.builder:Job name: DDEP/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-deposit + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DDEP/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DDEP/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DDEP/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DDOC/build-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DDOC/dev + + + + Build the documentation from git repos<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + swh-sphinx + false + + + 2 + + + origin + +refs/heads/*:refs/remotes/origin/* + https://forge.softwareheritage.org/source/swh-environment.git + + + + + ** + + + false + false + false + false + Default + + + + + + + + + + + H 9-22/2 * * * + + + + + #!/bin/bash +crudini --del .mrconfig snippets +crudini --del .mrconfig swh-py-template +mr -j 4 -t update +mr -t run sh -c 'echo -n "`basename $PWD` " && git describe' | grep -v 'mr run' > revisions.txt +cd swh-docs +git clean -dfx +SPHINXOPTS='-W -q --keep-going -w errors.log' SPHINXOPTCOLOR='--no-color' tox -e sphinx-dev + + + + + + revisions.txt,swh-docs/docs/errors.log,swh-docs/.tox/log/* + false + false + false + true + true + false + + + + + SWH Documentation (HEAD) + swh-docs/docs/_build/html + index.html + false + false + false + htmlpublisher-wrapper.html + + + + + + + SWH User Documentation (HEAD) + swh-docs/user/_build/html + index.html + false + false + false + htmlpublisher-wrapper.html + + + + + + + SWH sysadmin Documentation (HEAD) + swh-docs/sysadm/_build/html + index.html + false + false + false + htmlpublisher-wrapper.html + + + + + + +INFO:jenkins_jobs.builder:Job name: DDOC/publish + + + + Build the documentation and publish it<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + swh-sphinx + false + + + 2 + + + origin + +refs/heads/*:refs/remotes/origin/* + https://forge.softwareheritage.org/source/swh-environment.git + + + + + ** + + + false + false + false + false + Default + + + + + + + + + + + @midnight + + + + + #!/bin/bash +mr -j 4 -t update +mr -j 4 -t run sh -c 'git checkout --detach `git describe --abbrev=0 --tags`; git clean -dfx' +cd swh-docs +git checkout master +git clean -dfx +SPHINXOPTCOLOR='--no-color' tox -e sphinx + + + + + + SSH: + + + + pergamon + true + + + devel + swh-docs/docs/_build/html/** + + swh-docs/docs/_build/html + false + false + true + + + false + false + + + false + true + false + + + + + SSH: + + + + pergamon + true + + + user + swh-docs/user/_build/html/** + + swh-docs/user/_build/html + false + false + true + + + false + false + + + false + true + false + + + + + SSH: + + + + pergamon + true + + + sysadm + swh-docs/sysadm/_build/html/** + + swh-docs/sysadm/_build/html + false + false + true + + + false + false + + + false + true + false + + + + + + +INFO:jenkins_jobs.builder:Job name: DENV +INFO:jenkins_jobs.builder:Job name: DENV/tests + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-environment + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DFUSE + + + + Run tests for each swh module in development version<!-- Managed by Jenkins Job Builder --> + false + false + false + false + swh-sphinx + false + + + 2 + + + origin + +refs/heads/*:refs/remotes/origin/* + https://forge.softwareheritage.org/source/swh-environment.git + + + + + */master + + + false + false + false + false + Default + + + + + + + + + + + H */6 * * * + + + + + #!/bin/bash +# fetch swh repositories +mr -j 4 -t update +# setup a virtualenv +python3 -m venv .venv +. .venv/bin/activate +# upgrade pip as default installed version is too outdated to properly +# install all swh dependencies but pin temporarily version to <21.3 +# in order to workaround https://github.com/pypa/pip/issues/10573 +pip install --upgrade 'pip<21.3' +# install dependencies +./bin/install +cd swh-graph +make java >/dev/null +cd .. +# execute tests in each swh module +exit_code=0 +for module in $(./bin/ls-py-modules) +do + cd $module + tests_dir=$(echo $module | sed 's/-/\//g')/tests + if [ -d "$tests_dir" ] + then + # pipe tests output to stdout and log file + make test 2>&1 | tee ../$module.log + tests_status=${PIPESTATUS[0]} + # remove log file if tests succeeded + if [[ "$tests_status" == "0" ]] + then + rm -f ../$module.log + fi + # script must be exited with error when a test suite failed + exit_code=$(( tests_status > exit_code ? tests_status : exit_code )) + fi + cd .. +done + +exit $exit_code + + + + + + *.log + true + false + false + true + true + false + + + + + + 90 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DFUSE/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-fuse + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DFUSE/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DFUSE/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DFUSE/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DGRPH +INFO:jenkins_jobs.builder:Job name: DGRPH/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-graph + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DGRPH/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DGRPH/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DGRPH/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DICP +INFO:jenkins_jobs.builder:Job name: DICP/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-icinga-plugins + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DICP/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DICP/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DICP/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DJNL +INFO:jenkins_jobs.builder:Job name: DJNL/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-journal + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DJNL/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DJNL/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DJNL/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDBASE +INFO:jenkins_jobs.builder:Job name: DLDBASE/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-loader-core + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDBASE/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDBASE/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DLDBASE/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDBZR +INFO:jenkins_jobs.builder:Job name: DLDBZR/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-loader-bzr + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDBZR/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDBZR/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DLDBZR/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDCVS +INFO:jenkins_jobs.builder:Job name: DLDCVS/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-loader-cvs + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDCVS/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDCVS/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DLDCVS/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDG +INFO:jenkins_jobs.builder:Job name: DLDG/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-loader-git + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDG/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDG/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DLDG/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDHG +INFO:jenkins_jobs.builder:Job name: DLDHG/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-loader-mercurial + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDHG/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDHG/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DLDHG/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDSVN +INFO:jenkins_jobs.builder:Job name: DLDSVN/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-loader-svn + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDSVN/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLDSVN/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DLDSVN/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLS +INFO:jenkins_jobs.builder:Job name: DLS/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-lister + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLS/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DLS/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DLS/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DMFCD +INFO:jenkins_jobs.builder:Job name: DMFCD/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-clearlydefined + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DMFCD/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DMFCD/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DMFCD/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DMOD +INFO:jenkins_jobs.builder:Job name: DMOD/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-model + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DMOD/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DMOD/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DMOD/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DOBJS +INFO:jenkins_jobs.builder:Job name: DOBJS/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-objstorage + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DOBJS/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DOBJS/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DOBJS/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DOBJSRPL +INFO:jenkins_jobs.builder:Job name: DOBJSRPL/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-objstorage-replayer + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DOBJSRPL/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DOBJSRPL/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DOBJSRPL/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DOPH +INFO:jenkins_jobs.builder:Job name: DOPH/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-perfecthash + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DOPH/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DOPH/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DOPH/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DPROV +INFO:jenkins_jobs.builder:Job name: DPROV/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-provenance + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DPROV/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DPROV/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DPROV/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DSCH +INFO:jenkins_jobs.builder:Job name: DSCH/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-scheduler + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DSCH/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DSCH/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DSCH/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DSEA +INFO:jenkins_jobs.builder:Job name: DSEA/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-search + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DSEA/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DSEA/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DSEA/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DSTO +INFO:jenkins_jobs.builder:Job name: DSTO/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-storage + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DSTO/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DSTO/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DSTO/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DTPL +INFO:jenkins_jobs.builder:Job name: DTPL/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-py-template + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DTPL/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DTPL/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DTPL/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DTSCN +INFO:jenkins_jobs.builder:Job name: DTSCN/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-scanner + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DTSCN/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DTSCN/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DTSCN/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DVAU +INFO:jenkins_jobs.builder:Job name: DVAU/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-vault + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DVAU/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DVAU/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DVAU/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DWAPPS +INFO:jenkins_jobs.builder:Job name: DWAPPS/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-web + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DWAPPS/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DWAPPS/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DWAPPS/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DWCLI +INFO:jenkins_jobs.builder:Job name: DWCLI/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-web-client + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: DWCLI/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: DWCLI/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: DWCLI/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: TSBX +INFO:jenkins_jobs.builder:Job name: TSBX/incoming-tag + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-sandbox + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: TSBX/pypi-upload + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Upload to PyPI + false + false + false + true + + + + -1 + -1 + -1 + 10 + + + + + * + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + PYPI_HOST + PYPI registry to publish to when built revision is a tag. There +must exists a usernamePassword credential object with that name. +The pypi JSON API endpoint is built as https://$PYPI_HOST/project/<name>/json + + + + test.pypi.org + pypi.org + + + + + FORCE_UPLOAD + Force uploading python packages on the chosen PYPI registry, even if +the package already exists. + + false + + + SKIP_TESTS + Do not run tests on the repository. + + false + + + IGNORE_TESTS + Proceed even if the tests are failing on the repository. + + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: TSBX/tests + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + master branch + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + @daily + + + + + +INFO:jenkins_jobs.builder:Job name: TSBX/tests-on-diff + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Phab. Diff + false + false + ph4br1cat0r + true + true + + + + -1 + -1 + -1 + 20 + + + + + + REVISION + Git revision to build. + PT_REVISION + + * + .* + NONE + master + NONE + + false + + + PHID + PHID of the Phabricator target object on which results will be reported. + + + + DIFF_ID + ID of the Diff patch to apply, if any + + + + REV_ID + ID of the Phabricator revision, if any + + + + STAGING_URI + URI of the staging repository + + + + TOX_ENVIRONMENT + tox environment to use for the main tox run + py3 + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian +INFO:jenkins_jobs.builder:Job name: debian/deps +INFO:jenkins_jobs.builder:Job name: debian/deps/PATS +INFO:jenkins_jobs.builder:Job name: debian/deps/PATS/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + Debian + false + false + false + true + + + false + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + Debian Dependency Packages + false + false + false + true + + + false + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + python3-attr-strict + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PATS/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PATS/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/deps/PCASS +INFO:jenkins_jobs.builder:Job name: debian/deps/PCASS/automatic-backport + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + python-cassandra-driver + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PCASS/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PCASS/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/deps/PDJR +INFO:jenkins_jobs.builder:Job name: debian/deps/PDJR/automatic-backport + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + python3-django-js-reverse + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PDJR/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PDJR/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/deps/PDWL +INFO:jenkins_jobs.builder:Job name: debian/deps/PDWL/automatic-backport + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + django-webpack-loader + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PDWL/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PDWL/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/deps/PJOS +INFO:jenkins_jobs.builder:Job name: debian/deps/PJOS/automatic-backport + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + python3-jose + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PJOS/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PJOS/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/deps/PKCL +INFO:jenkins_jobs.builder:Job name: debian/deps/PKCL/automatic-backport + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + python3-keycloak + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PKCL/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PKCL/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/deps/PMK +INFO:jenkins_jobs.builder:Job name: debian/deps/PMK/automatic-backport + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + python3-mirakuru + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PMK/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PMK/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/deps/PPDW +INFO:jenkins_jobs.builder:Job name: debian/deps/PPDW/automatic-backport + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + python3-dulwich + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PPDW/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PPDW/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/deps/PPF +INFO:jenkins_jobs.builder:Job name: debian/deps/PPF/automatic-backport + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + python3-port-for + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PPF/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PPF/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/deps/PPL +INFO:jenkins_jobs.builder:Job name: debian/deps/PPL/automatic-backport + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + python3-plotille + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PPL/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PPL/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/deps/PPPE +INFO:jenkins_jobs.builder:Job name: debian/deps/PPPE/automatic-backport + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + python3-prometheus-pve-exporter + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PPPE/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PPPE/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/deps/PPSASL +INFO:jenkins_jobs.builder:Job name: debian/deps/PPSASL/automatic-backport + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + python-pure-sasl + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PPSASL/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PPSASL/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/deps/PPTRE +INFO:jenkins_jobs.builder:Job name: debian/deps/PPTRE/automatic-backport + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + python3-pytest-redis + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PPTRE/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PPTRE/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/deps/PSD +INFO:jenkins_jobs.builder:Job name: debian/deps/PSD/automatic-backport + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + python3-sqlitedict + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PSD/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PSD/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/deps/PSTATIO +INFO:jenkins_jobs.builder:Job name: debian/deps/PSTATIO/automatic-backport + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + python3-statusio + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PSTATIO/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PSTATIO/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/deps/PTDTM +INFO:jenkins_jobs.builder:Job name: debian/deps/PTDTM/automatic-backport + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + python3-django-test-migrations + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PTDTM/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PTDTM/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/deps/PTPP +INFO:jenkins_jobs.builder:Job name: debian/deps/PTPP/automatic-backport + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + python3-pytest-postgresql + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PTPP/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PTPP/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/deps/PTS +INFO:jenkins_jobs.builder:Job name: debian/deps/PTS/automatic-backport + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + python3-tree-sitter + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PTS/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/deps/PTS/incoming-tag +INFO:jenkins_jobs.builder:Job name: debian/maintenance +INFO:jenkins_jobs.builder:Job name: debian/maintenance/schroot-maintenance + + + + + true + + + <!-- Managed by Jenkins Job Builder --> + false + Incoming tag + false + false + ph4br1cat0r + false + true + + + + -1 + 20 + -1 + -1 + + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + + + + + + + + + + + + All + + + Debian package building-related maintenance jobs. +<!-- Managed by Jenkins Job Builder --> + false + Debian Maintenance + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/maintenance/update-scripts + + + + true + + + + + slave + + jenkins-debian01.internal.softwareheritage.org + + + + distribution + + unstable + bullseye + buster + stretch + + + + architecture + + amd64 + i386 + + + + + Update sbuild chroots.<br/>Do not edit this job through the web interface, it is generated via jenkins-job-builder!<!-- Managed by Jenkins Job Builder --> + false + false + false + false + . + true + + + + 7 + -1 + -1 + -1 + + + + + + + H */6 * * * + + + + + /usr/share/jenkins/debian-scripts/schroot-maintenance.sh + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages +INFO:jenkins_jobs.builder:Job name: debian/packages/DAUTH + + + + false + + + + + slave + + jenkins-debian01.internal.softwareheritage.org + + + + + Update debian scripts from the jenkins-jobs repository<!-- Managed by Jenkins Job Builder --> + false + false + false + false + . + true + + + + 7 + -1 + -1 + -1 + + + + + 2 + + + origin + +refs/heads/*:refs/remotes/origin/* + https://forge.softwareheritage.org/source/swh-jenkins-jobs/ + + + + + master + + + false + false + false + false + Default + + + + + + + + + H * * * * + + + + + chmod go+rX -R scripts/debian/ + + + rsync -az --delete scripts/debian/ /usr/share/jenkins/debian-scripts/ + + + rsync -az --delete keyrings/ /usr/share/keyrings/extra-repositories/ + + + + + + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + Debian Packages + false + false + false + true + + + false + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DAUTH/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-auth + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DAUTH/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DAUTH/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DCIDX +INFO:jenkins_jobs.builder:Job name: debian/packages/DCIDX/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-indexer + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DCIDX/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DCIDX/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DCNT +INFO:jenkins_jobs.builder:Job name: debian/packages/DCNT/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-counters + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DCNT/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DCNT/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DCORE +INFO:jenkins_jobs.builder:Job name: debian/packages/DCORE/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-core + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DCORE/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DCORE/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DDATASET +INFO:jenkins_jobs.builder:Job name: debian/packages/DDATASET/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-dataset + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DDATASET/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DDATASET/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DDEP +INFO:jenkins_jobs.builder:Job name: debian/packages/DDEP/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-deposit + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DDEP/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DDEP/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DFUSE +INFO:jenkins_jobs.builder:Job name: debian/packages/DFUSE/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-fuse + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DFUSE/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DFUSE/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DGRPH +INFO:jenkins_jobs.builder:Job name: debian/packages/DGRPH/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-graph + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DGRPH/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DGRPH/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DICP +INFO:jenkins_jobs.builder:Job name: debian/packages/DICP/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-icinga-plugins + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DICP/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DICP/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DJNL +INFO:jenkins_jobs.builder:Job name: debian/packages/DJNL/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-journal + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DJNL/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DJNL/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDBASE +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDBASE/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-loader-core + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDBASE/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDBASE/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDBZR +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDBZR/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-loader-bzr + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDBZR/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDBZR/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDCVS +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDCVS/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-loader-cvs + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDCVS/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDCVS/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDG +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDG/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-loader-git + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDG/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDG/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDHG +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDHG/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-loader-mercurial + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDHG/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDHG/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDSVN +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDSVN/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-loader-svn + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDSVN/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLDSVN/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLS +INFO:jenkins_jobs.builder:Job name: debian/packages/DLS/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-lister + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLS/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DLS/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DMFCD +INFO:jenkins_jobs.builder:Job name: debian/packages/DMFCD/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-clearlydefined + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DMFCD/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DMFCD/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DMOD +INFO:jenkins_jobs.builder:Job name: debian/packages/DMOD/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-model + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DMOD/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DMOD/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DOBJS +INFO:jenkins_jobs.builder:Job name: debian/packages/DOBJS/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-objstorage + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DOBJS/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + ceph + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DOBJS/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DOBJSRPL +INFO:jenkins_jobs.builder:Job name: debian/packages/DOBJSRPL/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-objstorage-replayer + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DOBJSRPL/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DOBJSRPL/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DOPH +INFO:jenkins_jobs.builder:Job name: debian/packages/DOPH/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-perfecthash + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DOPH/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DOPH/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DPROV +INFO:jenkins_jobs.builder:Job name: debian/packages/DPROV/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-provenance + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DPROV/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DPROV/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DSCH +INFO:jenkins_jobs.builder:Job name: debian/packages/DSCH/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-scheduler + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DSCH/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DSCH/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DSEA +INFO:jenkins_jobs.builder:Job name: debian/packages/DSEA/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-search + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DSEA/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + elasticsearch + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DSEA/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DSTO +INFO:jenkins_jobs.builder:Job name: debian/packages/DSTO/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-storage + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DSTO/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + cassandra + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DSTO/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DTPL +INFO:jenkins_jobs.builder:Job name: debian/packages/DTPL/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-py-template + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DTPL/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DTPL/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DTSCN +INFO:jenkins_jobs.builder:Job name: debian/packages/DTSCN/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-scanner + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DTSCN/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DTSCN/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DVAU +INFO:jenkins_jobs.builder:Job name: debian/packages/DVAU/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-vault + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DVAU/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DVAU/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DWAPPS +INFO:jenkins_jobs.builder:Job name: debian/packages/DWAPPS/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-web + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DWAPPS/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DWAPPS/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DWCLI +INFO:jenkins_jobs.builder:Job name: debian/packages/DWCLI/automatic-backport + + + + + + All + + + <!-- Managed by Jenkins Job Builder --> + false + swh-web-client + false + false + false + true + + + + + + + + + + false + + + Backport Debian package to the given release +<!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to backport + + + + SOURCE + check that the source branch corresponds to this before issuing the backport + + + unstable-swh + unstable + bookworm-swh + bullseye-swh + buster-swh + + + + + DESTINATION + the destination branch the backport targets + + + buster-swh + bullseye-swh + bookworm-swh + + + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DWCLI/gbp-buildpackage + + + + + false + + + Build Debian package +<!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + true + + + + -1 + 10 + -1 + -1 + + + + + + GIT_REVISION + Git revision to build + debian/unstable-swh + + + PHID + PHID of the phabricator target object on which results will be reported + + + + EXTRA_REPOSITORIES + extra repositories needed to build this package + incoming,backports,swh,ceph,pgdg,elasticsearch,cassandra + 5 + , + false + None + The buildd incoming repository (default for builds from unstable),The debian backports repository (default for builds for stable-swh),The Software Heritage debian repository (default for builds for swh branches),The ceph repository,PostgreSQL Global Dvt Group repository (for stable-swh builds requiring latest postgresql),Elasticsearch 7.x repository (for builds requiring elasticsearch installed),Cassandra 4.x repository (for builds requiring cassandra installed) + PT_CHECKBOX + + + + + + + + + + + + + + + + + BUILD_DEP_RESOLVER + the sbuild build dependency resolver (overrides the automatic detection) + + + + + apt + aptitude + + + + + DO_UPLOAD + upload the built package + false + + + BACKPORT_ON_SUCCESS + If the build is successful, which backports should we perform? + unstable-swh>stretch-swh,unstable-swh>buster-swh,unstable-swh>bullseye-swh,buster-swh>stretch-swh + 5 + , + false + unstable-swh>buster-swh + + PT_CHECKBOX + + + + + + + + + + + + + + + + + + + + + + +INFO:jenkins_jobs.builder:Job name: debian/packages/DWCLI/update-for-release + + + + + false + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + false + true + + + + + GIT_TAG + git tag to process + PT_TAG + + * + .* + DESCENDING_SMART + + TOP + + false + + + DRY_RUN + Don't push the resulting changes to a Debian branch + false + + + + + + + + +INFO:jenkins_jobs.builder:Job name: jenkins-tools/clean-docker +INFO:jenkins_jobs.builder:Job name: jenkins-tools/swh-jenkins-dockerfiles +INFO:jenkins_jobs.builder:Job name: swh-docker-dev + + + + Clean old Docker objects<!-- Managed by Jenkins Job Builder --> + false + false + false + false + master + false + + + + 7 + -1 + -1 + -1 + + + + + + + @midnight + + + + + docker system prune --filter 'label!=keep' --volumes --force + + + + + + + + + <!-- Managed by Jenkins Job Builder --> + false + false + false + ph4br1cat0r + false + master + false + + + + 7 + -1 + -1 + -1 + + + + + 2 + + + origin + +refs/heads/*:refs/remotes/origin/* + http://forge.softwareheritage.org/source/swh-jenkins-dockerfiles.git + + + + + ** + + + false + false + false + false + Default + + + + + + + + + H/30 * * * * + false + + + @daily + + + + + make checkrebuild all + + + + + + + xterm + + + +INFO:jenkins_jobs.builder:Number of views generated: 0 + + + + Build the swh/stack:latest image<!-- Managed by Jenkins Job Builder --> + false + false + false + false + master + false + + + 2 + + + origin + +refs/heads/*:refs/remotes/origin/* + https://forge.softwareheritage.org/source/swh-environment.git + + + + + */master + + + false + false + false + false + Default + + + + + + + + + + + @midnight + + + + + #!/bin/bash +cd docker +docker build --pull --no-cache -t swh/stack . +tox + + + + + + docker/**/*.logs + true + false + false + true + true + false + + + + + + 30 + + + + + + + + +___________________________________ summary ____________________________________ + test: commands succeeded + congratulations :)