diff options
author | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2020-02-10 11:12:03 -0800 |
---|---|---|
committer | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2020-02-10 11:13:11 -0800 |
commit | d640b6bbe2b0b7464502762d12e2143f4ec939b2 (patch) | |
tree | f201465b70bee9f00edf48f2fa8ebf7340ad4b26 /jjb | |
parent | 7edc61bab16b8fd815517fcbbaee032669dcd97f (diff) |
Ignore Test Repositories when generating Archive
Ignores the 'test' repositories created in Gerrit as they don't contain
any actual OPNFV code.
This may break if we ever add a project that begins with 'test' in the
name but I expect the chances of that are low.
Change-Id: I633ce85e85c82d4c5ff85a4fb66bddf891cd0bfb
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/releng/opnfv-repo-archiver.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/releng/opnfv-repo-archiver.sh b/jjb/releng/opnfv-repo-archiver.sh index b7ff3baa0..7a92e6f1b 100644 --- a/jjb/releng/opnfv-repo-archiver.sh +++ b/jjb/releng/opnfv-repo-archiver.sh @@ -14,7 +14,7 @@ export PATH=$PATH:/usr/local/bin/ DATE="$(date +%Y%m%d)" declare -a PROJECT_LIST -EXCLUDE_PROJECTS="All-Projects|All-Users|securedlab" +EXCLUDE_PROJECTS="All-Projects|All-Users|securedlab|^test" CLONE_PATH="$WORKSPACE/opnfv-repos" # Generate project list from gerrit |