Merge pull request #37 from GabyCT/topic/addrun

ci: Add run.sh and setup.sh in order to run the tests.
This commit is contained in:
Samuel Ortiz 2018-02-23 01:05:00 +01:00 committed by GitHub
commit b97f8ad710
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

14
.ci/run.sh Executable file
View File

@ -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

16
.ci/setup.sh Executable file
View File

@ -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