Browse code

Add oslo.rootwrap to devstack gate

oslo.rootwrap recently graduated but was not made part of the
devstack-gate. This change is part of a series of changes affecting
devstack-gate, config and devstack which will collectively fix this:

https://review.openstack.org/#/q/status:open+topic:rootwrap-gate,n,z

This should probably be merged once the config and devstack-gate changes
are in, so that it can be self-testing.

Change-Id: I7b1332c8004845a0dd76e27d871370d41d4524ac

Thierry Carrez authored on 2014/01/02 23:05:41
Showing 2 changed files
... ...
@@ -22,6 +22,7 @@ set +o xtrace
22 22
 # --------
23 23
 OSLOCFG_DIR=$DEST/oslo.config
24 24
 OSLOMSG_DIR=$DEST/oslo.messaging
25
+OSLORWRAP_DIR=$DEST/oslo.rootwrap
25 26
 
26 27
 # Entry Points
27 28
 # ------------
... ...
@@ -37,6 +38,9 @@ function install_oslo() {
37 37
 
38 38
     git_clone $OSLOMSG_REPO $OSLOMSG_DIR $OSLOMSG_BRANCH
39 39
     setup_develop $OSLOMSG_DIR
40
+
41
+    git_clone $OSLORWRAP_REPO $OSLORWRAP_DIR $OSLORWRAP_BRANCH
42
+    setup_develop $OSLORWRAP_DIR
40 43
 }
41 44
 
42 45
 # cleanup_oslo() - purge possibly old versions of oslo
... ...
@@ -136,6 +136,10 @@ OSLOCFG_BRANCH=${OSLOCFG_BRANCH:-master}
136 136
 OSLOMSG_REPO=${OSLOMSG_REPO:-${GIT_BASE}/openstack/oslo.messaging.git}
137 137
 OSLOMSG_BRANCH=${OSLOMSG_BRANCH:-master}
138 138
 
139
+# oslo.rootwrap
140
+OSLORWRAP_REPO=${OSLORWRAP_REPO:-${GIT_BASE}/openstack/oslo.rootwrap.git}
141
+OSLORWRAP_BRANCH=${OSLORWRAP_BRANCH:-master}
142
+
139 143
 # pbr drives the setuptools configs
140 144
 PBR_REPO=${PBR_REPO:-${GIT_BASE}/openstack-dev/pbr.git}
141 145
 PBR_BRANCH=${PBR_BRANCH:-master}