mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
* switch to go modules * update vendor (go mod vendor) * swithing to go mod: update docs and makefile * update goget-tools * use go mod verify to check vendor * Update goget-tools - pin goget-tools versions - update gikgo to 1.14.0 - reset GOFLAGS for goget-tools - fix ginkgo get for Prow * go mod: replace github.com/kr/pty with github.com/creack/pty * update vendor (go mod vendor) * fix make cross target -mod=vendor was not used for corss compiling
41 lines
827 B
Bash
Executable File
41 lines
827 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# fail if some commands fails
|
|
set -e
|
|
# show commands
|
|
set -x
|
|
|
|
export CI="openshift"
|
|
make configure-installer-tests-cluster
|
|
make bin
|
|
mkdir -p $GOPATH/bin
|
|
make goget-ginkgo
|
|
export PATH="$PATH:$(pwd):$GOPATH/bin"
|
|
export ARTIFACTS_DIR="/tmp/artifacts"
|
|
export CUSTOM_HOMEDIR=$ARTIFACTS_DIR
|
|
|
|
# Copy kubeconfig to temporary kubeconfig file
|
|
# Read and Write permission to temporary kubeconfig file
|
|
TMP_DIR=$(mktemp -d)
|
|
cp $KUBECONFIG $TMP_DIR/kubeconfig
|
|
chmod 640 $TMP_DIR/kubeconfig
|
|
export KUBECONFIG=$TMP_DIR/kubeconfig
|
|
|
|
# Login as developer
|
|
odo login -u developer -p developer
|
|
|
|
# Check login user name for debugging purpose
|
|
oc whoami
|
|
|
|
# Integration tests
|
|
make test-integration
|
|
make test-integration-devfile
|
|
make test-cmd-login-logout
|
|
make test-cmd-project
|
|
make test-operator-hub
|
|
|
|
# E2e tests
|
|
make test-e2e-all
|
|
|
|
odo logout
|