From d12a6f76fd88e24762623b65142d0de36c610bae Mon Sep 17 00:00:00 2001 From: Ricardo Noriega Date: Tue, 13 Oct 2020 12:22:40 +0200 Subject: [PATCH] Remove KNI job that is no longer needed Signed-off-by: Ricardo Noriega Change-Id: Ib9d6e92d8df11c3b3fc02b4a382b770db3029658 --- jjb/akraino-templates/akraino-jjb-kni.yaml | 31 ------------------------ jjb/kni/kni_installer.yaml | 1 - jjb/shell/build_kni_binary.sh | 39 ------------------------------ 3 files changed, 71 deletions(-) delete mode 100644 jjb/shell/build_kni_binary.sh diff --git a/jjb/akraino-templates/akraino-jjb-kni.yaml b/jjb/akraino-templates/akraino-jjb-kni.yaml index a930e90..aacb6e7 100644 --- a/jjb/akraino-templates/akraino-jjb-kni.yaml +++ b/jjb/akraino-templates/akraino-jjb-kni.yaml @@ -146,37 +146,6 @@ - shell: !include-raw-escape: - ../shell/build_kni_installer.sh -- job-template: - id: kni-installer-verify-binary - name: '{project-name}-verify-binary' - <<: *kni_common - build-node: centos7-builder-8c-8g - - gerrit_trigger_file_paths: - - compare-type: ANT - pattern: 'Makefile' - - compare-type: ANT - pattern: 'cmd/binary.go' - - triggers: - - gerrit: - server-name: '{gerrit-server-name}' - trigger-on: '{obj:gerrit_verify_triggers}' - projects: - - project-compare-type: ANT - project-pattern: '{project}' - branches: - - branch-compare-type: ANT - branch-pattern: '**/{branch}' - file-paths: '{obj:gerrit_trigger_file_paths}' - - builders: - - lf-infra-pre-build - - shell: !include-raw-escape: - - ../shell/install_go.sh - - shell: !include-raw-escape: - - ../shell/build_kni_binary.sh - - job-template: id: kni-verify-deploy-aws name: 'kni-{project-name}-verify-deploy-aws' diff --git a/jjb/kni/kni_installer.yaml b/jjb/kni/kni_installer.yaml index 83cd3c4..4970cae 100644 --- a/jjb/kni/kni_installer.yaml +++ b/jjb/kni/kni_installer.yaml @@ -7,7 +7,6 @@ branch: master jobs: - kni-installer-verify-installer - - kni-installer-verify-binary - project: name: kni-blueprint-pae diff --git a/jjb/shell/build_kni_binary.sh b/jjb/shell/build_kni_binary.sh deleted file mode 100644 index 36e78b3..0000000 --- a/jjb/shell/build_kni_binary.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash -# -# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -export PATH=$PATH:/usr/local/go/bin -KNI_PATH='go/src/gerrit.akraino.org/kni/' - -set -e -u -x -o pipefail - -echo '---> Starting kni installer generation' - -mkdir -p $HOME/${KNI_PATH}/installer -export GOPATH=$HOME/go - -# move clone to gopath -cp -R ${WORKSPACE}/* $HOME/${KNI_PATH}/installer/ - -# first build kni installer -pushd $HOME/${KNI_PATH}/installer -make build - -# then build the binary -make binary -STATUS=$? -popd - -exit $STATUS -- 2.16.6