Skip to content
This repository was archived by the owner on Dec 3, 2024. It is now read-only.

Fix make and make test #19

Merged
merged 3 commits into from
Dec 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
*.tmp
.DS_Store
.build
*.swp
travis.yml
release-tools
bin
28 changes: 28 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Copyright 2020 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.

all: reltools build
.PHONY: reltools
reltools: release-tools/build.make
release-tools/build.make:
$(eval CURDIR := $(shell pwd))
$(eval TMP := $(shell mktemp -d))
$(shell cd ${TMP} && git clone https://github.com/kubernetes-sigs/container-object-storage-interface-spec)
$(shell cp -r ${TMP}/container-object-storage-interface-spec/release-tools ${CURDIR}/)
$(shell rm -rf ${TMP})
ln -s release-tools/travis.yml travis.yml

#CMDS=provisioner-sidecar

include release-tools/build.make
6 changes: 4 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
module github.com/kubernetes-sigs/container-object-storage-interface-provisioner-sidecar

go 1.14
go 1.15

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