projects
/
pgapt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aeece3f
)
Add -q parameter to trigger-binnmu
author
Christoph Berg
<myon@debian.org>
Fri, 6 Sep 2024 17:35:34 +0000
(19:35 +0200)
committer
Christoph Berg
<myon@debian.org>
Fri, 6 Sep 2024 17:35:34 +0000
(19:35 +0200)
jenkins/trigger-binnmu
patch
|
blob
|
blame
|
history
diff --git
a/jenkins/trigger-binnmu
b/jenkins/trigger-binnmu
index 9e3ed6ebd6795eb09af943068a3c0f80622a4ce3..9156fbc20f0fb4cf312a6d0f1a1a80b8811cde5d 100755
(executable)
--- a/
jenkins/trigger-binnmu
+++ b/
jenkins/trigger-binnmu
@@
-4,10
+4,11
@@
set -eu
-while getopts "d:r:" opt ; do
+while getopts "d:r:
q:
" opt ; do
case $opt in
d) distribution="$OPTARG" ;;
r) revision="$OPTARG" ;;
+ q) queue="$OPTARG" ;;
*) exit 5 ;;
esac
done
@@
-20,4
+21,4
@@
PACKAGE="$1"
echo "https://pgdgbuild.dus.dg-i.net/job/$PACKAGE-source"
echo -n "Continue? "
read reply
-./trigger-job ${distribution:+-d "$distribution"} "$PACKAGE-binaries"
+./trigger-job ${distribution:+-d "$distribution"}
${queue:+-q "$queue"}
"$PACKAGE-binaries"