ci: Add scripts needed by CI

Add required files to execute CI.

Fixes: #21

Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
This commit is contained in:
Jose Carlos Venegas Munoz
2018-04-26 08:37:34 -05:00
parent d3e8d9c0e4
commit 191089fa8f
4 changed files with 53 additions and 0 deletions

14
.ci/run.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
#
# Copyright (c) 2017-2018 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
set -o errexit
set -o nounset
set -o pipefail
# This script will execute packaging tests suite
# TODO: Add steps needed to build packages
true

12
.ci/setup.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
#
# Copyright (c) 2018 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
set -o errexit
set -o nounset
set -o pipefail
echo "Setup script for packaging"

14
.ci/static-checks.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
#
# Copyright (c) 2018 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
set -o errexit
set -o nounset
set -o pipefail
# This script should run any static analysis check
# It is called by the CI setup
true

13
.ci/teardown.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
#
# Copyright (c) 2018 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
set -o errexit
set -o nounset
set -o pipefail
# TODO: Add teardown steps as need
true