Joey Armstrong | ee4d826 | 2023-08-22 15:19:19 -0400 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | # ----------------------------------------------------------------------- |
Joey Armstrong | aadcaa4 | 2024-02-01 19:54:17 -0500 | [diff] [blame] | 3 | # Copyright 2022-2024 Open Networking Foundation (ONF) and the ONF Contributors |
Joey Armstrong | ee4d826 | 2023-08-22 15:19:19 -0400 | [diff] [blame] | 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 Armstrong | aadcaa4 | 2024-02-01 19:54:17 -0500 | [diff] [blame] | 17 | # SPDX-FileCopyrightText: 2024 Open Networking Foundation (ONF) and the ONF Contributors |
Joey Armstrong | ee4d826 | 2023-08-22 15:19:19 -0400 | [diff] [blame] | 18 | # SPDX-License-Identifier: Apache-2.0 |
| 19 | # ----------------------------------------------------------------------- |
| 20 | |
| 21 | $(if $(DEBUG),$(warning ENTER)) |
| 22 | |
| 23 | show-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] |