mirror of
https://github.com/kubernetes-csi/csi-driver-nvmf.git
synced 2025-04-27 11:01:15 +00:00
1. upgrade go version from v1.14 to v.1.19 2. upgrade csi_spec from v1.5.0 to v1.7.0 3. upgrade golang.org/x/net from v0.4.0 to v0.5.0 4. upgrade google.golang.org/grpc from v1.49.0 to v1.51.0 5. upgrade klog from v1.0 to v2.80.1 6. upgrade k8s.io/utils from 2022 to 2023 7. remove logrus Signed-off-by: Meinhard Zhou <zhouenhua@bytedance.com>
28 lines
863 B
Bash
Executable File
28 lines
863 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# Copyright 2022 The Kubernetes 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.
|
|
|
|
# A Prow job can override these defaults, but this shouldn't be necessary.
|
|
|
|
# disable e2e tests for now
|
|
CSI_PROW_E2E_REPO=none
|
|
CSI_PROW_GO_VERSION_BUILD=1.19
|
|
# Only these tests make sense for unit test
|
|
: ${CSI_PROW_TESTS:="unit"}
|
|
|
|
. release-tools/prow.sh
|
|
|
|
main
|