diff options
| author | fisherxu <xufei40@huawei.com> | 2021-04-14 17:54:16 +0800 |
|---|---|---|
| committer | fisherxu <xufei40@huawei.com> | 2021-04-14 21:55:18 +0800 |
| commit | 8534b36346450cdeb00c1e1a62e42012779dcdaf (patch) | |
| tree | ff1cf0fb8c3b91a1bc8bea0d345782fdb56d235f /hack | |
| parent | remove mappers from kubeedge/kubeedge repo (diff) | |
| download | kubeedge-8534b36346450cdeb00c1e1a62e42012779dcdaf.tar.gz | |
remove mapper e2e test
Signed-off-by: fisherxu <xufei40@huawei.com>
Diffstat (limited to 'hack')
| -rwxr-xr-x | hack/lib/init.sh | 1 | ||||
| -rwxr-xr-x | hack/lib/mapper.sh | 40 |
2 files changed, 0 insertions, 41 deletions
diff --git a/hack/lib/init.sh b/hack/lib/init.sh index c4eb2f3ee..fc3fb614f 100755 --- a/hack/lib/init.sh +++ b/hack/lib/init.sh @@ -30,5 +30,4 @@ readonly KUBEEDGE_GO_PACKAGE="github.com/kubeedge/kubeedge" source "${KUBEEDGE_ROOT}/hack/lib/golang.sh" source "${KUBEEDGE_ROOT}/hack/lib/lint.sh" -source "${KUBEEDGE_ROOT}/hack/lib/mapper.sh" source "${KUBEEDGE_ROOT}/hack/lib/util.sh" diff --git a/hack/lib/mapper.sh b/hack/lib/mapper.sh deleted file mode 100755 index 23777e7e4..000000000 --- a/hack/lib/mapper.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env bash - -# Copyright 2020 The KubeEdge Authors. -# -# 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. - - -set -o errexit -set -o nounset -set -o pipefail - -kubeedge::mapper::build_bluetoothdevice() { - blutooth_binary=${KUBEEDGE_GO_PACKAGE}/mappers/bluetooth_mapper - name=bluetooth_mapper - - mkdir -p ${KUBEEDGE_OUTPUT_BINPATH} - set -x - go build -o ${KUBEEDGE_OUTPUT_BINPATH}/${name} $blutooth_binary - set +x -} - -kubeedge::mapper::build_modbusmapper() { - modbus_binary=${KUBEEDGE_GO_PACKAGE}/mappers/modbus-go - name=modbus - - mkdir -p ${KUBEEDGE_OUTPUT_BINPATH} - set -x - go build -o mappers/modbus-go/${name} $modbus_binary - set +x -} |
