diff options
author | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2016-11-09 11:46:30 -0800 |
---|---|---|
committer | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2016-11-09 11:46:30 -0800 |
commit | 31524f49baa376c3fa227eb4d67138035e60789b (patch) | |
tree | 3d87cd8b3685de9d4506a4af74cc852cb288c36b /utils | |
parent | 483081b7fb0cf5d7dec5ee1d6ff0bddc387a59dc (diff) |
Remove Old 'test-sign-daily-master' Job and Script
Artifact signing is in place and working. This job is currently
returning false-positive successful runs and consuming resources on
Jenkins master.
Change-Id: I6e94f361c117221b4b9d0ba08f9359f539815834
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/test-sign-artifact.sh | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/utils/test-sign-artifact.sh b/utils/test-sign-artifact.sh deleted file mode 100755 index f09b7f4e2..000000000 --- a/utils/test-sign-artifact.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -export PATH=$PATH:/usr/local/bin/ - -# clone releng repository -echo "Cloning releng repository..." -[ -d releng ] && rm -rf releng -git clone https://gerrit.opnfv.org/gerrit/releng $WORKSPACE/releng/ &> /dev/null -#this is where we import the siging key -if [ -f $WORKSPACE/releng/utils/gpg_import_key.sh ]; then - source $WORKSPACE/releng/utils/gpg_import_key.sh -fi - -artifact="foo" -echo foo > foo - -testsign () { - echo "Signing artifact: ${artifact}" - gpg2 -vvv --batch \ - --default-key opnfv-helpdesk@rt.linuxfoundation.org \ - --passphrase besteffort \ - --detach-sig $artifact -} - -testsign - |