792416df3f
Paul wrote a Debian repository publisher post job, but it's using deb-openstack-pkg-tools instead of openstack-pkg-tools as the path from where to pick-up the package. Therefore, the files should be pushed to /packaging-deb/deb-openstack-pkg-tools (ie: with deb- in front) for it to work. Hopefully, this will be the last fix of upload path. Change-Id: I658ce15d737e10658fcbddba0188d83b838994c1
56 lines
1.3 KiB
YAML
56 lines
1.3 KiB
YAML
- job:
|
|
name: pkgdeb-build-openstack-pkg-tools
|
|
node: debian-jessie
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 30
|
|
- timestamps
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- shell: |
|
|
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
sudo cp ${WORKSPACE}/build-tools/pkgos-infra-install-sbuild /usr/sbin
|
|
sudo chmod +x /usr/sbin/pkgos-infra-install-sbuild
|
|
sudo cp ${WORKSPACE}/build-tools/pkgos-infra-build-pkg /usr/bin
|
|
sudo chmod +x /usr/bin/pkgos-infra-build-pkg
|
|
sudo pkgos-infra-install-sbuild
|
|
pkgos-infra-build-pkg
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
- job:
|
|
name: pkgdeb-publish-openstack-pkg-tools
|
|
node: debian-jessie
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 30
|
|
- timestamps
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- shell: |
|
|
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
sudo cp ${WORKSPACE}/build-tools/pkgos-infra-install-sbuild /usr/sbin
|
|
sudo chmod +x /usr/sbin/pkgos-infra-install-sbuild
|
|
sudo cp ${WORKSPACE}/build-tools/pkgos-infra-build-pkg /usr/bin
|
|
sudo chmod +x /usr/bin/pkgos-infra-build-pkg
|
|
sudo pkgos-infra-install-sbuild
|
|
pkgos-infra-build-pkg
|
|
|
|
publishers:
|
|
- deb-pkgs:
|
|
project: deb-openstack-pkg-tools
|
|
- console-log
|