Files
kata-containers/Makefile
Jose Carlos Venegas Munoz 38a20d49a8 ci: Skip non working test.
Skip non working tests.

Fixes: #68

Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
2018-06-13 17:35:18 -05:00

23 lines
472 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: test-release-tools test-packaging-tools
test-release-tools:
@$(MK_DIR)/release/tag_repos_test.sh
test-packaging-tools:
ifndef CI
@$(MK_DIR)/build_from_docker.sh
else
@echo "Skip test-packaging-tools"
@echo "See: https://github.com/kata-containers/packaging/issues/68"
endif