blob: 9857746c6d94f9ec8af7d6587d85f9a4ca00ae13 [file] [log] [blame]
Joey Armstrong65405412022-11-22 10:43:06 -05001# -*- makefile -*-
Joey Armstrong3f575f72023-01-15 23:49:19 -05002# -----------------------------------------------------------------------
3# Copyright 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16# -----------------------------------------------------------------------
Joey Armstrong65405412022-11-22 10:43:06 -050017
Zack Williamsc2140b92018-04-05 09:19:22 -070018# Makefile for testing JJB jobs in a virtualenv
Joey Armstrong068d6452023-02-01 11:09:18 -050019.PHONY: help clean help test
20.DEFAULT_GOAL := help
Zack Williamsc2140b92018-04-05 09:19:22 -070021
Joey Armstrong3f575f72023-01-15 23:49:19 -050022##-------------------##
23##---] GLOBALS [---##
24##-------------------##
25TOP ?= .
26MAKEDIR ?= $(TOP)/makefiles
Joey Armstrong3f575f72023-01-15 23:49:19 -050027
Joey Armstrong3f575f72023-01-15 23:49:19 -050028##--------------------##
29##---] INCLUDES [---##
30##--------------------##
Joey Armstrong980e37f2023-02-28 18:57:41 -050031include config.mk
Joey Armstrong3f575f72023-01-15 23:49:19 -050032include $(MAKEDIR)/include.mk
33
Zack Williamsc2140b92018-04-05 09:19:22 -070034VENV_DIR ?= venv-jjb
Joey Armstrong0895a882023-02-06 14:50:39 -050035JJB_VERSION ?= 2.8.0
Joey Armstrong3f575f72023-01-15 23:49:19 -050036# JJB_VERSION ?= 4.1.0
Zack Williamsc2140b92018-04-05 09:19:22 -070037JOBCONFIG_DIR ?= job-configs
38
Joey Armstrong01bbf8d2023-03-05 06:20:14 -050039# -----------------------------------------------------------------------
40# horrible dep: (ie -- .PHONY: $(JOBCONFIG_DIR))
41# o Directory inode always changing due to (time-last-accessed++).
42# o Dependent Targets always re-made due to setale dependency.
43# o Use file inside directory as dep rather than a directory.
44# -----------------------------------------------------------------------
Zack Williamsc2140b92018-04-05 09:19:22 -070045$(JOBCONFIG_DIR):
46 mkdir $@
47
Joey Armstrong01bbf8d2023-03-05 06:20:14 -050048##-------------------##
49##---] TARGETS [---##
50##-------------------##
51include $(MAKEDIR)/targets/check.mk
52include $(MAKEDIR)/targets/tox.mk# # python unit testing
53include $(MAKEDIR)/targets/test.mk
Joey Armstrong3f575f72023-01-15 23:49:19 -050054
Joey Armstrong068d6452023-02-01 11:09:18 -050055## Display make help late
Joey Armstrong3f575f72023-01-15 23:49:19 -050056include $(ONF_MAKE)/help/trailer.mk
Joey Armstrong65405412022-11-22 10:43:06 -050057
58# [EOF]