680dc103bc
Since we have zuul-cloner on the proposal node now, we can use it there. So, remove the constraints-git-prep and zuul-git-branch-prep-upper-constraints and replace it with the normal zuul-cloner builders that set up constraints. The two builders have been used only for translation jobs, we can remove them completely now. Change-Id: I7787daf025f4f14cf665db0366fa81f54adfa884
94 lines
2.4 KiB
YAML
94 lines
2.4 KiB
YAML
- job-template:
|
|
name: '{name}-upstream-translation-update'
|
|
|
|
builders:
|
|
- print-template-name:
|
|
template-name: "{template-name}"
|
|
- proposal-slave-cleanup
|
|
- revoke-sudo
|
|
- zuul-git-prep-upper-constraints
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
/usr/local/jenkins/slave_scripts/upstream_translation_update.sh {name} {template-name}
|
|
|
|
publishers:
|
|
- scp:
|
|
site: 'tarballs.openstack.org'
|
|
files:
|
|
- source: 'translation-source/**/*.pot'
|
|
target: 'tarballs/'
|
|
keep-hierarchy: true
|
|
- scp:
|
|
site: 'static.openstack.org'
|
|
files:
|
|
- target: 'logs/$LOG_PATH'
|
|
source: 'testrepository.subunit.gz'
|
|
keep-hierarchy: false
|
|
copy-after-failure: true
|
|
- test-results
|
|
- console-log
|
|
|
|
node: 'proposal'
|
|
|
|
- job-template:
|
|
name: '{name}-propose-translation-update{suffix}'
|
|
|
|
builders:
|
|
- print-template-name:
|
|
template-name: "{template-name}"
|
|
- proposal-slave-cleanup
|
|
- revoke-sudo
|
|
- zuul-git-branch-prep-upper-constraints:
|
|
branch: '{branch}'
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
/usr/local/jenkins/slave_scripts/propose_translation_update.sh {name} {branch} {template-name}
|
|
|
|
publishers:
|
|
- scp:
|
|
site: 'static.openstack.org'
|
|
files:
|
|
- target: 'logs/$LOG_PATH'
|
|
source: 'testrepository.subunit.gz'
|
|
keep-hierarchy: false
|
|
copy-after-failure: true
|
|
- test-results
|
|
- console-log
|
|
|
|
node: 'proposal'
|
|
|
|
- job-group:
|
|
name: translation-jobs
|
|
suffix: ''
|
|
branch: master
|
|
jobs:
|
|
- '{name}-upstream-translation-update'
|
|
- '{name}-propose-translation-update{suffix}'
|
|
|
|
- job-group:
|
|
name: translation-jobs-mitaka
|
|
suffix: '-mitaka'
|
|
branch: stable/mitaka
|
|
jobs:
|
|
- '{name}-propose-translation-update{suffix}'
|
|
|
|
- job-group:
|
|
name: translation-jobs-newton
|
|
suffix: '-newton'
|
|
branch: stable/newton
|
|
jobs:
|
|
- '{name}-propose-translation-update{suffix}'
|
|
|
|
- job-group:
|
|
name: manual-translation-jobs
|
|
suffix: ''
|
|
branch: master
|
|
jobs:
|
|
- '{name}-upstream-translation-update'
|
|
- '{name}-propose-translation-update{suffix}'
|
|
- 'gate-{name}-tox-{envlist}-{node}':
|
|
envlist: checklang
|
|
node: ubuntu-xenial
|
|
- '{name}-tox-doc-{envlist}':
|
|
envlist: publishlang
|