intel-device-plugins-for-ku.../scripts/jenkins/Makefile
Rivera Gonzalez, Julio C a0ba1b38fe Add CI Jenkins stage with test case for intel-device-plugin: QAT
This commit adds bash scripts with the proper granularity for each sub-stage,
needed for QAT device main stage validation.

Signed-off-by: Rivera Gonzalez, Julio C <julio.c.rivera.gonzalez@intel.com>
2019-12-03 11:59:15 -06:00

24 lines
391 B
Makefile

# Copyright 2019 Intel Corporation.
#
# SPDX-License-Identifier: Apache-2.0
#
# Makefile for jenkins-tests intel-device-plugins.
tests = $(shell ls -d */ | cut -f1 -d'/')
$(tests):
@make -C $@ all
tests: $(tests)
info:
@kubectl get pods
@kubectl describe pods
logs-$(tests):
@make -C $(subst logs-,,$@) logs
logs: info logs-$(tests)
.PHONY: info logs logs-$(tests) tests $(tests)