mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-02 12:26:23 +00:00
17 lines
212 B
Bash
Executable File
17 lines
212 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -e
|
|
|
|
cidir=$(dirname "$0")
|
|
source "${cidir}/lib.sh"
|
|
|
|
clone_tests_repo
|
|
|
|
pushd "${tests_repo_dir}"
|
|
.ci/setup.sh
|
|
popd
|