/
githubmirror
/
skopeo
Обзор
Документация
Войти
/
githubmirror
/
skopeo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
vendor/github.com/containers/ocicrypt/Makefile
38 строк
1022 B
renovate[bot]
Update module github.com/containers/ocicrypt to v1.3.1
07 июл 2026, 22:46
Не верифицирован
07 июл 2026, 22:46
163e4a5
Код
Авторство
О чём код?
# Copyright The containerd 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. .PHONY: check build decoder generate-protobuf all: build FORCE: check: golangci-lint run build: vendor go build ./... vendor: go mod tidy test: go clean -testcache go test ./... -test.v generate-protobuf: protoc -I utils/keyprovider/ \ --go_out=utils/keyprovider --go_opt=paths=source_relative \ --go-grpc_out=utils/keyprovider --go-grpc_opt=paths=source_relative \ utils/keyprovider/keyprovider.proto