322d7e5dfb
This is related to zuulv25, we make sure console-log is the last publisher to ensure zuul-launcher logs are also uploaded. Change-Id: I1616b97fad2b97fb9e977ec14543aab4bc673b58 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
66 lines
1.6 KiB
YAML
66 lines
1.6 KiB
YAML
# This is a non-standard docs job because it uses SCP instead of FTP
|
|
- job:
|
|
name: storyboard-docs
|
|
node: ubuntu-trusty
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- install-distro-packages
|
|
- revoke-sudo
|
|
- docs
|
|
|
|
publishers:
|
|
- scp:
|
|
site: '173.203.107.207'
|
|
files:
|
|
- target: 'ci/storyboard'
|
|
source: 'doc/build/html/**/*'
|
|
keep-hierarchy: true
|
|
- console-log
|
|
|
|
- job:
|
|
name: gate-storyboard-js-integration
|
|
node: ubuntu-trusty
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 40
|
|
- timestamps
|
|
|
|
builders:
|
|
- gerrit-git-prep
|
|
- install-distro-packages
|
|
- npm-install
|
|
- xvfb-install
|
|
- chrome-install
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
/usr/zuul-env/bin/zuul-cloner --cache-dir /opt/git git://git.openstack.org openstack-infra/storyboard openstack-infra/storyboard-webclient
|
|
|
|
export CREATE_USER=1
|
|
export DB_ADMIN_USER=root
|
|
export STORYBOARD_PATH=openstack-infra/storyboard
|
|
|
|
./openstack-infra/storyboard/tools/install_test_backend.sh
|
|
|
|
- js-build:
|
|
command: 'test:integration'
|
|
envlist: 'grunt_no_api'
|
|
project: 'storyboard-webclient'
|
|
- assert-no-extra-files
|
|
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
./openstack-infra/storyboard/tools/destroy_test_backend.sh
|
|
|
|
publishers:
|
|
- coverage-log
|
|
- scp:
|
|
site: 'static.openstack.org'
|
|
files:
|
|
- target: 'logs/$LOG_PATH'
|
|
source: 'reports/**'
|
|
keep-hierarchy: true
|
|
copy-after-failure: true
|
|
- console-log
|