mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-05-12 18:35:08 +00:00
git-subtree-dir: tools/packaging git-subtree-mainline:f818b46a41
git-subtree-split:1f22d72d5d
Signed-off-by: Peng Tao <bergwolf@hyper.sh>
35 lines
729 B
Bash
35 lines
729 B
Bash
#
|
|
# Copyright (c) 2018,2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
export tests_repo="${tests_repo:-github.com/kata-containers/tests}"
|
|
export tests_repo_dir="$GOPATH/src/$tests_repo"
|
|
|
|
clone_tests_repo()
|
|
{
|
|
# KATA_CI_NO_NETWORK is (has to be) ignored if there is
|
|
# no existing clone.
|
|
if [ -d "$tests_repo_dir" -a -n "$KATA_CI_NO_NETWORK" ]
|
|
then
|
|
return
|
|
fi
|
|
|
|
go get -d -u "$tests_repo" || true
|
|
if [ -n "${TRAVIS_BRANCH:-}" ]; then
|
|
( cd "${tests_repo_dir}" && git checkout "${TRAVIS_BRANCH}" )
|
|
fi
|
|
}
|
|
|
|
run_static_checks()
|
|
{
|
|
clone_tests_repo
|
|
bash "$tests_repo_dir/.ci/static-checks.sh" "github.com/kata-containers/packaging"
|
|
}
|
|
|
|
run_go_test()
|
|
{
|
|
clone_tests_repo
|
|
bash "$tests_repo_dir/.ci/go-test.sh"
|
|
}
|