Merge pull request #1409 from eparis/use-config-go-in-hack

hack: Switch some $(dirname $0)../blah to use ${KUBE_*} vars
This commit is contained in:
Filipe Brandenburger 2014-09-23 08:21:53 -07:00
commit 098eda600f
2 changed files with 5 additions and 3 deletions

View File

@ -18,6 +18,7 @@
# simple scenarios. It does not require Docker so it can run in travis. # simple scenarios. It does not require Docker so it can run in travis.
source $(dirname $0)/util.sh source $(dirname $0)/util.sh
source $(dirname $0)/config-go.sh
function cleanup() function cleanup()
{ {
@ -44,7 +45,7 @@ ETCD_PORT=${ETCD_PORT:-4001}
API_PORT=${API_PORT:-8080} API_PORT=${API_PORT:-8080}
API_HOST=${API_HOST:-127.0.0.1} API_HOST=${API_HOST:-127.0.0.1}
KUBELET_PORT=${KUBELET_PORT:-10250} KUBELET_PORT=${KUBELET_PORT:-10250}
GO_OUT=$(dirname $0)/../_output/go/bin GO_OUT=${KUBE_TARGET}/bin
# Check kubecfg # Check kubecfg
out=$(${GO_OUT}/kubecfg -version) out=$(${GO_OUT}/kubecfg -version)

View File

@ -15,6 +15,7 @@
# limitations under the License. # limitations under the License.
source $(dirname $0)/util.sh source $(dirname $0)/util.sh
source $(dirname $0)/config-go.sh
function cleanup() function cleanup()
{ {
@ -37,14 +38,14 @@ echo
echo Integration test cases ... echo Integration test cases ...
echo echo
GOFLAGS="-tags 'integration no-docker'" \ GOFLAGS="-tags 'integration no-docker'" \
$(dirname $0)/../hack/test-go.sh test/integration ${KUBE_REPO_ROOT}/hack/test-go.sh test/integration
# leave etcd running if integration tests fail # leave etcd running if integration tests fail
trap "echo etcd still running" EXIT trap "echo etcd still running" EXIT
echo echo
echo Integration scenario ... echo Integration scenario ...
echo echo
$(dirname $0)/../_output/go/bin/integration ${KUBE_TARGET}/bin/integration
# nuke etcd # nuke etcd
trap cleanup EXIT SIGINT trap cleanup EXIT SIGINT