Skip to content

Commit

Permalink
Merge pull request kata-containers#56 from chavafg/topic/ci-scripts
Browse files Browse the repository at this point in the history
CI: add setup.sh and run.sh to execute integration tests
  • Loading branch information
Julio Montes authored Feb 26, 2018
2 parents 22fc022 + 3386218 commit cfc47c7
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .ci/run.sh
Original file line number Diff line number Diff line change
@@ -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 changes: 16 additions & 0 deletions .ci/setup.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit cfc47c7

Please sign in to comment.