Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Angus Ainslie
deb-build-jobs
Commits
1fd126a2
Commit
1fd126a2
authored
Jan 30, 2021
by
Guido Gunther
Committed by
Guido Gunther
Mar 23, 2021
Browse files
blessed-builds: Drop return code that doesn't exist
Return code 128 got dropped when we fixed tag verification. Fixes:
f2b50474
parent
7cd2baf2
Changes
1
Hide whitespace changes
Inline
Side-by-side
blessed_build_auto.groovy
View file @
1fd126a2
...
...
@@ -166,11 +166,7 @@ pkgs.each { pkg ->
currentBuild.result = 'SUCCESS'
if(result != 0) {
if(result == 128) {
currentBuild.result = 'NOT_BUILT'
print "No tag on HEAD was found or tag was not signed. Aborting build."
throw "not built"
} else if (result == 64) {
if (result == 64) {
currentBuild.result = 'NOT_BUILT'
print "Tag verification failed!"
throw "not built"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment