mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 20:08:54 +00:00
- Add tests for release tool tag_repos.sh - Toplevel makefile - Add make test target for CI Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
15 lines
270 B
Makefile
15 lines
270 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-release-tools:
|
|
@$(MK_DIR)/release/tag_repos_test.sh
|