summaryrefslogtreecommitdiffstats
path: root/releases/scripts/release-status.sh
diff options
context:
space:
mode:
Diffstat (limited to 'releases/scripts/release-status.sh')
-rwxr-xr-xreleases/scripts/release-status.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/releases/scripts/release-status.sh b/releases/scripts/release-status.sh
new file mode 100755
index 000000000..1fb4f70e2
--- /dev/null
+++ b/releases/scripts/release-status.sh
@@ -0,0 +1,25 @@
+#!/bin/bash
+# SPDX-License-Identifier: Apache-2.0
+##############################################################################
+# Copyright (c) 2018 The Linux Foundation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+set -o pipefail
+
+TAG="${TAG:-opnfv-6.0.0}"
+RELEASE="${RELEASE:-fraser}"
+
+[ -a repos.txt ] && rm repos.txt
+
+for project in releases/$RELEASE/*; do
+ python3 releases/scripts/repos.py -n -f $project >> repos.txt
+done
+
+while read -r repo
+do
+ tag="$(git ls-remote "https://gerrit.opnfv.org/gerrit/$repo.git" "refs/tags/$TAG")"
+ echo "$repo $tag"
+done < repos.txt