mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-05-02 05:34:46 +00:00
Run make and test for both agent and runtime. Signed-off-by: Peng Tao <bergwolf@hyper.sh>
20 lines
385 B
Bash
Executable File
20 lines
385 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -e
|
|
|
|
cidir=$(dirname "$0")
|
|
vcdir="${cidir}/../src/runtime/virtcontainers/"
|
|
source "${cidir}/lib.sh"
|
|
export CI_JOB="${CI_JOB:-default}"
|
|
|
|
clone_tests_repo
|
|
|
|
if [ "${CI_JOB}" != "PODMAN" ]; then
|
|
echo "Install virtcontainers"
|
|
make -C "${vcdir}" && chronic sudo make -C "${vcdir}" install
|
|
fi
|