170cc2bc61
I previously incread the timeout of the general debian package build job at: https://review.openstack.org/373389 but what was really needed was increasing the backport job timeout, which is what this patch does. Indeed, some package are reaching the timeout. For example, building python-pandas (needed by Gnocchi) can take a little bit than 1h30. It already built once, then the other times, it failed, as it took a bit longer. Change-Id: I2b7f1dd5e10275ddda16282f361e6ed43a23d905
54 lines
1.2 KiB
YAML
54 lines
1.2 KiB
YAML
- job:
|
|
name: pkgdeb-build-auto-backports
|
|
node: debian-jessie
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 120
|
|
- timestamps
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- shell: |
|
|
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
sudo cp /etc/apt/sources.list.available.d/debian-openstack-newton.list /etc/apt/sources.list.d
|
|
sudo apt-get update
|
|
sudo apt-get install -y openstack-pkg-tools
|
|
sudo pkgos-infra-install-sbuild --sbuild-chroot-name jessie-newton-backports
|
|
./check-and-build-bpo
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
- job:
|
|
name: pkgdeb-publish-auto-backports
|
|
node: debian-jessie
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 120
|
|
- timestamps
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- shell: |
|
|
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
sudo cp /etc/apt/sources.list.available.d/debian-openstack-newton.list /etc/apt/sources.list.d
|
|
sudo apt-get update
|
|
sudo apt-get install -y openstack-pkg-tools
|
|
sudo pkgos-infra-install-sbuild --sbuild-chroot-name jessie-newton-backports
|
|
./check-and-build-bpo
|
|
|
|
publishers:
|
|
- deb-pkgs:
|
|
project: deb-auto-backports
|
|
- console-log
|