blob: ecdaebcf01bb074be4f983ea189e101b3cbb91e1 [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 Armstrong068d6452023-02-01 11:09:18 -050027export SHELL := bash -e -o pipefail# # [TODO] remove once set -u cleaned up
Joey Armstrong3f575f72023-01-15 23:49:19 -050028
Joey Armstrong3f575f72023-01-15 23:49:19 -050029##--------------------##
30##---] INCLUDES [---##
31##--------------------##
Joey Armstrongb3a06412023-02-06 09:58:58 -050032-include config.mk
Joey Armstrong3f575f72023-01-15 23:49:19 -050033include $(MAKEDIR)/include.mk
34
Zack Williamsc2140b92018-04-05 09:19:22 -070035VENV_DIR ?= venv-jjb
Joey Armstrong0895a882023-02-06 14:50:39 -050036JJB_VERSION ?= 2.8.0
Joey Armstrong3f575f72023-01-15 23:49:19 -050037# JJB_VERSION ?= 4.1.0
Zack Williamsc2140b92018-04-05 09:19:22 -070038JOBCONFIG_DIR ?= job-configs
39
Zack Williamsc2140b92018-04-05 09:19:22 -070040$(JOBCONFIG_DIR):
41 mkdir $@
42
Joey Armstrong3f575f72023-01-15 23:49:19 -050043## -----------------------------------------------------------------------
Joey Armstrong068d6452023-02-01 11:09:18 -050044## Intent: Sanity check incoming JJB config changes.
45## Todo: Depend on makefiles/lint/jjb.mk :: lint-jjb
Joey Armstrong3f575f72023-01-15 23:49:19 -050046## -----------------------------------------------------------------------
Joey Armstrongb3a06412023-02-06 09:58:58 -050047# lint : lint-jjb
48lint-tox:
49 tox -e py310
50
51## -----------------------------------------------------------------------
52## -----------------------------------------------------------------------
Joey Armstrong3f575f72023-01-15 23:49:19 -050053.PHONY: test
54test: $(venv-activate-script) $(JOBCONFIG_DIR)
55 $(activate) \
56 && pipdeptree \
57 && jenkins-jobs -l DEBUG test --recursive --config-xml -o "$(JOBCONFIG_DIR)" jjb/ ;
Zack Williams9ac51db2018-04-16 16:44:24 -070058
Joey Armstrong3f575f72023-01-15 23:49:19 -050059## -----------------------------------------------------------------------
60## -----------------------------------------------------------------------
61.PHONY: clean
Zack Williamsc2140b92018-04-05 09:19:22 -070062clean:
Joey Armstrong3f575f72023-01-15 23:49:19 -050063 $(RM) -r $(JOBCONFIG_DIR)
64
Joey Armstrong068d6452023-02-01 11:09:18 -050065## Display make help late
Joey Armstrong3f575f72023-01-15 23:49:19 -050066include $(ONF_MAKE)/help/trailer.mk
Joey Armstrong65405412022-11-22 10:43:06 -050067
68# [EOF]