mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 20:08:54 +00:00
In order to track the changes that we add to the kernel, lets add a kata_config_version file that should be bumped whenever a change is added to the kernel directory Fixes #43. Signed-off-by: Salvador Fuentes <salvador.fuentes@intel.com>
19 lines
315 B
Bash
Executable File
19 lines
315 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2017-2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
cidir=$(dirname "$0")
|
|
source "${cidir}/lib.sh"
|
|
|
|
# This script will execute packaging tests suite
|
|
# TODO: Add steps needed to build packages
|
|
|
|
check_kata_kernel_version
|