- Changing contrib/devstack to contrib/add-ons as there is a top-level devstack introduced as part of the devstack plugin architecture. The existence of the contrib/devstack directory was leading to conflicts with the top-level devstack directory. Hence renamed contrib/devstack to contrib/add-ons - Cleaning up gate hooks - Removing oslo.messaging from config generator as it is causing tempest to fail in the gate Along with the changes in this patch we needed the following patch: https://review.openstack.org/#/c/265088/ Closes-Bug: #1532332 Change-Id: I2afc6b96dd04f43aafcbd6e812dc2da4d62bd49e
21 lines
743 B
Bash
Executable File
21 lines
743 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2014 - Rackspace Hosting
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
# This script is executed inside gate_hook function in devstack gate.
|
|
|
|
export REQUIREMENTS_MODE=soft
|
|
|
|
$BASE/new/devstack-gate/devstack-vm-gate.sh
|