blob: a80ca53f7458b75372643022b07d57bea78c8f48 [file] [log] [blame]
Joey Armstronga5278142023-06-28 16:56:54 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrong098eedd2024-02-11 10:00:59 -05003# Copyright 2022-2024 Open Networking Foundation (ONF) and the ONF Contributors
Joey Armstronga5278142023-06-28 16:56:54 -04004#
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 Armstrong098eedd2024-02-11 10:00:59 -050017# SPDX-FileCopyrightText: 2024 Open Networking Foundation (ONF) and the ONF Contributors
Joey Armstronga5278142023-06-28 16:56:54 -040018# SPDX-License-Identifier: Apache-2.0
19# -----------------------------------------------------------------------
20
21$(if $(DEBUG),$(warning ENTER))
22
23show-submodules:
24
25 $(HIDE)cat .gitmodules
26
27 @echo
28 $(HIDE) git submodule
29
30$(if $(DEBUG),$(warning LEAVE))
31
32# https://github.com/lfit/releng-global-jjb/tags
33# git checkout v0.86.7
34# [crucible:global-jjb] git checkout v0.86.7
35# Previous HEAD position was 5dc3432 Update regexp in lf-infra-ship-logs macro
36# HEAD is now at c5bd1d3 Fix: Pin urllib3~=1.26.15 in pypi dist jobs
37
38# 5dc3432cae2f13d9e5151a00a76a78ce73d92d70 global-jjb (v0.53.3)
39# 0d88f8b7a24b53b1c3e189e30ab94373c51eea91 lf-ansible (0d88f8b)
40# 4a5b0cd9032938194c4813fe36663ddee4f9e60e packer/common-packer (v0.1.0~22)
41
42# https://stackoverflow.com/questions/30301510/git-submodule-specify-version
43# cd global-jjb
44# git checkout v0.86.7
45# cd -
46# git commit . -m "use submodule v0.86.7"
47
48# https://github.com/lfit/releng-lf-ansible.git
49# tag==master, no release
50
51# https://github.com/lfit/releng-common-packer.git
52# cd packer/common-packer
53# git checkout v0.12.1
54# cd -
55# git commit . -m "use submodule v0.12.1""
56
57# [EOF]