Merge "Remove unused macros gpg-sig and jjbini"
authorAnil Belur <abelur@linuxfoundation.org>
Wed, 8 Nov 2017 22:41:20 +0000 (22:41 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Wed, 8 Nov 2017 22:41:20 +0000 (22:41 +0000)
jjb/releng-macros.yaml
jjb/verify-gpg-signatures.sh [deleted file]

index eda6fda0b95a23e8fe20ae3b9f887785bf286d81..cd77391bced7efd77000fe3a561b19376aad48a0 100644 (file)
       - openstack:
           single-use: true
 
-- builder:
-    # TODO: Verify signature after downloading users public key from a locally created
-    # repository instead of the public keymesh. This requires a process in place to get ODL
-    # developers public keys into a local repository without increasing the job thoughput.
-    name: verify-gpg-signature
-    builders:
-      - shell: !include-raw: verify-gpg-signatures.sh
-
-- builder:
-    name: opendaylight-infra-jjbini
-    builders:
-      - config-file-provider:
-          files:
-            - file-id: 'jjbini'
-              target: '$HOME/.config/jenkins_jobs/jenkins_jobs.ini'
-
 - publisher:
     name: opendaylight-infra-generate-csit-status-report
     publishers:
diff --git a/jjb/verify-gpg-signatures.sh b/jjb/verify-gpg-signatures.sh
deleted file mode 100644 (file)
index e00eab6..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-# SPDX-License-Identifier: EPL-1.0
-##############################################################################
-# Copyright (c) 2017 The Linux Foundation and others.
-#
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License v1.0
-# which accompanies this distribution, and is available at
-# http://www.eclipse.org/legal/epl-v10.html
-##############################################################################
-
-if git log --show-signature -1 | egrep -q 'gpg: Signature made.*key ID'; then
-   echo "git commit is gpg signed"
-else
-   echo "WARNING: gpg signature missing for the commit"
-fi
-
-# Don't fail the job for unsigned commits
-exit 0