mirror of
https://github.com/intel/intel-device-plugins-for-kubernetes.git
synced 2025-06-03 03:59:37 +00:00

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>
24 lines
391 B
Makefile
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)
|