mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 20:08:54 +00:00
Build qemu if there is any change in static-build. Do the same with the rest of projects in this repositoy. Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
22 lines
398 B
Makefile
22 lines
398 B
Makefile
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
#
|
|
|
|
MK_DIR :=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
.PHONY: test test-release-tools
|
|
|
|
test:
|
|
@$(MK_DIR)/.ci/test.sh
|
|
|
|
test-release-tools:
|
|
@$(MK_DIR)/release/tag_repos_test.sh
|
|
|
|
test-static-build:
|
|
@make -f $(MK_DIR)/static-build/qemu/Makefile
|
|
|
|
test-packaging-tools:
|
|
@$(MK_DIR)/build_from_docker.sh
|