Skip to content

Commit aaad0b1

Browse files
committed
Fix make and make test
1 parent e0022a5 commit aaad0b1

File tree

4 files changed

+80
-33
lines changed

4 files changed

+80
-33
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
*.tmp
2+
.DS_Store
3+
.build
4+
*.swp
5+
travis.yml
6+
release-tools
7+
bin
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Copyright 2020 The Kubernetes Authors.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
all: reltools build
16+
.PHONY: reltools
17+
reltools: release-tools/build.make
18+
release-tools/build.make:
19+
$(eval CURDIR := $(shell pwd))
20+
$(eval TMP := $(shell mktemp -d))
21+
$(shell cd ${TMP} && git clone https://github.com/kubernetes-sigs/container-object-storage-interface-spec)
22+
$(shell cp -r ${TMP}/container-object-storage-interface-spec/release-tools ${CURDIR}/)
23+
$(shell rm -rf ${TMP})
24+
ln -s release-tools/travis.yml travis.yml
25+
26+
#CMDS=provisioner-sidecar
27+
28+
include release-tools/build.make

container-object-storage-interface-provisioner-sidecar/go.mod

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
module github.com/kubernetes-sigs/container-object-storage-interface-provisioner-sidecar
22

3-
go 1.14
3+
go 1.15
44

55
require (
6+
github.com/kubernetes-csi/csi-lib-utils v0.9.0
67
github.com/kubernetes-sigs/container-object-storage-interface-api v0.0.0-20201204201926-43539346a903
7-
github.com/kubernetes-sigs/container-object-storage-interface-spec v0.0.0-20201208142312-59e00cb00687
8+
github.com/kubernetes-sigs/container-object-storage-interface-spec v0.0.0-20201217184109-8cbf84dde8d3
9+
golang.org/x/net v0.0.0-20200707034311-ab3426394381
810
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324
911
google.golang.org/grpc v1.34.0
1012
k8s.io/api v0.19.4

0 commit comments

Comments
 (0)