summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAric Gardner <agardner@linuxfoundation.org>2016-11-10 15:54:05 +0000
committerGerrit Code Review <gerrit@opnfv.org>2016-11-10 15:54:05 +0000
commit26ccce219a8b83fee33246e0526965ed94f5e41f (patch)
treec88b768876108dcdc5e807117d770567d8c9e663
parent64d9e6f6c2a8700e23eb2d992a411bd54ed9c83e (diff)
parent31524f49baa376c3fa227eb4d67138035e60789b (diff)
Merge "Remove Old 'test-sign-daily-master' Job and Script"
-rw-r--r--jjb/opnfv/test-sign.yml42
-rwxr-xr-xutils/test-sign-artifact.sh26
2 files changed, 0 insertions, 68 deletions
diff --git a/jjb/opnfv/test-sign.yml b/jjb/opnfv/test-sign.yml
deleted file mode 100644
index b27d75777..000000000
--- a/jjb/opnfv/test-sign.yml
+++ /dev/null
@@ -1,42 +0,0 @@
-- project:
- name: test-sign
-
- project: 'releng'
-
- jobs:
- - 'test-sign-daily-{stream}'
-
- stream:
- - master:
- branch: '{stream}'
- gs-pathname: ''
-
-
-- job-template:
- name: 'test-sign-daily-{stream}'
-
- # Job template for daily builders
- #
- # Required Variables:
- # stream: branch with - in place of / (eg. stable)
- # branch: branch (eg. stable)
- node: master
-
- disabled: false
-
- parameters:
- - project-parameter:
- project: '{project}'
-
- scm:
- - git-scm:
- credentials-id: '{ssh-credentials}'
- refspec: ''
- branch: '{branch}'
-
- triggers:
- - timed: 'H H * * *'
-
- builders:
- - shell: |
- $WORKSPACE/utils/test-sign-artifact.sh
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
-