containerized-data-importer/automation/test.sh
罗云鹤 e20bac5093
feature: support aarch64 (#1863)
* feature: support aarch64

Signed-off-by: luoyunhe <luoyunhe@chinatelecom.cn>

* update rpm http file

Signed-off-by: luoyunhe <luoyunhe@chinatelecom.cn>

* rebase and fix get rpm files

Signed-off-by: luoyunhe <luoyunhe@chinatelecom.cn>

* fix test

Signed-off-by: luoyunhe <luoyunhe@chinatelecom.cn>

* modify automation/test.sh to create ci.bazelrc instead of .bazelrc

Signed-off-by: luoyunhe <luoyunhe@chinatelecom.cn>

* modify automation/test.sh to create ci.bazelrc instead of .bazelrc

Signed-off-by: luoyunhe <luoyunhe@chinatelecom.cn>

Co-authored-by: luoyunhe <luoyunhe@chinatelecom.cn>
2021-07-21 17:52:32 +02:00

116 lines
3.3 KiB
Bash
Executable File

#!/bin/bash
#
# This file is part of the KubeVirt project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Copyright 2017 Red Hat, Inc.
#
# CI considerations: $TARGET is used by the jenkins build, to distinguish what to test
# Currently considered $TARGET values:
# kubernetes-release: Runs all functional tests on a release kubernetes setup
# openshift-release: Runs all functional tests on a release openshift setup
set -ex
export NAMESPACE="cdi-$(cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 5 | head -n 1)"
export CDI_NAMESPACE=$NAMESPACE
echo "namespace: ${NAMESPACE}, cdi-namespace: ${CDI_NAMESPACE}"
if [[ -n "$RANDOM_CR" ]]; then
export CR_NAME="${CDI_NAMESPACE}"
fi
readonly ARTIFACTS_PATH="${ARTIFACTS}"
readonly BAZEL_CACHE="${BAZEL_CACHE:-http://bazel-cache.kubevirt-prow.svc.cluster.local:8080/kubevirt.io/containerized-data-importer}"
export KUBEVIRT_PROVIDER=$TARGET
if [[ $TARGET =~ openshift-.* ]]; then
export KUBEVIRT_PROVIDER="os-3.11.0-crio"
elif [[ $TARGET =~ k8s-.* ]]; then
export KUBEVIRT_NUM_NODES=2
export KUBEVIRT_MEMORY_SIZE=8192
fi
if [ ! -d "cluster-up/cluster/$KUBEVIRT_PROVIDER" ]; then
echo "The cluster provider $KUBEVIRT_PROVIDER does not exist"
exit 1
fi
if [[ -n "$MULTI_UPGRADE" ]]; then
export UPGRADE_FROM="v1.10.7 v1.11.0 v1.12.0 v1.13.2 v1.14.0 v1.15.0"
fi
# Don't upgrade if we are using a random CR name, otherwise the upgrade will fail
if [[ -z "$UPGRADE_FROM" ]] && [[ -z "$RANDOM_CR" ]]; then
export UPGRADE_FROM=$(curl -s https://github.com/kubevirt/containerized-data-importer/releases/latest | grep -o "v[0-9]\.[0-9]*\.[0-9]*")
echo "Upgrading from verions: $UPGRADE_FROM"
fi
export KUBEVIRT_NUM_NODES=2
kubectl() { cluster-up/kubectl.sh "$@"; }
export CDI_NAMESPACE="${CDI_NAMESPACE:-cdi}"
make cluster-down
# Create .bazelrc to use remote cache
cat >ci.bazelrc <<EOF
startup --host_jvm_args=-Dbazel.DigestFunction=sha256
build --remote_local_fallback
build --remote_http_cache=${BAZEL_CACHE}
build --jobs=4
EOF
make cluster-up
# Wait for nodes to become ready
set +e
kubectl_rc=0
retry_counter=0
while [[ $retry_counter -lt 30 ]] && [[ $kubectl_rc -ne 0 || -n "$(kubectl get nodes --no-headers | grep NotReady)" ]]; do
echo "Waiting for all nodes to become ready ..."
kubectl get nodes --no-headers
kubectl_rc=$?
retry_counter=$((retry_counter + 1))
sleep 10
done
set -e
if [ $retry_counter -eq 30 ]; then
echo "Not all nodes are up"
exit 1
fi
echo "Nodes are ready:"
kubectl get nodes
make cluster-sync
kubectl version
ginko_params="--test-args=--ginkgo.noColor --junit-output=${ARTIFACTS_PATH}/junit.functest.xml"
if [[ -n "$CDI_E2E_FOCUS" ]]; then
ginko_params="${ginko_params} --ginkgo.focus=${CDI_E2E_FOCUS}"
fi
if [[ -n "$CDI_E2E_SKIP" ]]; then
ginko_params="${ginko_params} --ginkgo.skip=${CDI_E2E_SKIP}"
fi
# Run functional tests
TEST_ARGS=$ginko_params make test-functional