cd5693bc48
Because we are in a deadly embrace with the config plugin after the OpenDev work the config plugin is being forced off in this job to remove one of the dependencies. Ultimately extracting cgts-client to be installable stand-alone is a better solution to allow other plugins to install directly. Depends-On: https://review.opendev.org/653961 Change-Id: I47f1d0df404fc40a9d514c1b0689b5457dbc3f87 Signed-off-by: Dean Troyer <dtroyer@gmail.com>
41 lines
659 B
Bash
Executable File
41 lines
659 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Copyright (C) 2019 Intel Corporation
|
|
#
|
|
|
|
# devstack/build.sh
|
|
# Run DevStack plugin builds
|
|
|
|
set -o xtrace
|
|
|
|
unset LANG
|
|
unset LANGUAGE
|
|
LC_ALL=en_US.utf8
|
|
export LC_ALL
|
|
|
|
# Keep track of the DevStack plugin directory
|
|
PLUGIN_DIR=$(cd $(dirname "$0")/.. && pwd)
|
|
PLUGIN_NAME=$(basename $PLUGIN_DIR)
|
|
|
|
# Keep plugin happy
|
|
declare -a GITDIR
|
|
GITDIR[$PLUGIN_NAME]=$PLUGIN_DIR
|
|
|
|
# Dummy function to keep plugin happy
|
|
function get_python_exec_prefix {
|
|
echo ""
|
|
}
|
|
|
|
function is_service_enabled {
|
|
return 0
|
|
}
|
|
|
|
# Get the build functions
|
|
source $PLUGIN_DIR/devstack/lib/fault
|
|
|
|
# Call builds
|
|
build_fm_common
|
|
build_fm_mgr
|