* Pull binary build steps into separate functions * Add build.sh to call binary builds without the rest of DevStack * Add new stx-fault-build job and tox build environment * Make stx-fault-devstack voting (still only devstack/*) Change-Id: I6692fc1f75db413860ede2657f4f1501b95c10c0 Signed-off-by: Dean Troyer <dtroyer@gmail.com>
26 lines
413 B
Bash
26 lines
413 B
Bash
#!/bin/bash
|
|
# Devstack settings
|
|
|
|
# Services
|
|
# stx-fault - Overall enable for this plugin
|
|
# fm-client
|
|
# fm-common
|
|
# fm-api
|
|
# fm-rest-api
|
|
# fm-mgr
|
|
|
|
# Defaults
|
|
# --------
|
|
|
|
STX_FAULT_NAME=stx-fault
|
|
|
|
######### Plugin Specific ##########
|
|
enable_service $STX_FAULT_NAME
|
|
|
|
if is_service_enabled fm-rest-api; then
|
|
enable_service tsconfig
|
|
fi
|
|
|
|
# Initial source of lib script
|
|
source $DEST/stx-fault/devstack/lib/stx-fault
|