diff --git a/.ci/run.sh b/.ci/run.sh new file mode 100755 index 0000000000..3b2b7d7c2a --- /dev/null +++ b/.ci/run.sh @@ -0,0 +1,14 @@ +#!/bin/bash +# +# Copyright (c) 2018 Intel Corporation +# +# SPDX-License-Identifier: Apache-2.0 + +set -e + +cidir=$(dirname "$0") +source "${cidir}/lib.sh" + +pushd "${tests_repo_dir}" +.ci/run.sh +popd diff --git a/.ci/setup.sh b/.ci/setup.sh new file mode 100755 index 0000000000..8580fb7352 --- /dev/null +++ b/.ci/setup.sh @@ -0,0 +1,16 @@ +#!/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