diff options
author | 2022-08-11 17:07:12 -0400 | |
---|---|---|
committer | 2022-08-11 17:38:09 -0400 | |
commit | a97057b8d053120616aaf764cd254e8b6407906a (patch) | |
tree | 26971590d00b95fe830c09ee1e12360a8ea1d434 /jjb/scripts/vpp/make-test-docs.sh | |
parent | 2d13650a9bf7fb78763e2dd777e4f5d1aaa8aeb0 (diff) |
post 22.06 vpp job clean up
- Remove ubuntu-18.04 jobs
- Remove vpp 21.10 jobs
- Address TODO clean up now that 21.06 & 21.10
are no longer supported
- Remove unused jjb/hc2vpp (archived project)
Change-Id: I9da69fa175ebb647476916e9921f4149045408b4
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'jjb/scripts/vpp/make-test-docs.sh')
-rwxr-xr-x | jjb/scripts/vpp/make-test-docs.sh | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/jjb/scripts/vpp/make-test-docs.sh b/jjb/scripts/vpp/make-test-docs.sh deleted file mode 100755 index 0c6e2156d..000000000 --- a/jjb/scripts/vpp/make-test-docs.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash - -# Copyright (c) 2021 Cisco and/or its affiliates. -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at: -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -echo "---> jjb/scripts/vpp/make-test-docs.sh" - -set -euxo pipefail - -# TODO: Remove this file when stable/2106 and stable/2110 are no longer -# supported as 'make test-doc' is deprecated in master (VPP 22.02) - -line="*************************************************************************" -# Don't build anything if this is a merge job being run when -# the git HEAD id is not the same as the Gerrit New Revision id. -if [[ ${JOB_NAME} == *merge* ]] && [ -n "${GERRIT_NEWREV:-}" ] && - [ "$GERRIT_NEWREV" != "$GIT_COMMIT" ] ; then - echo -e "\n$line\nSkipping 'make test' docs build. A newer patch has been merged.\n$line\n" - exit 0 -fi - -make test-doc |