Skip to content
This repository was archived by the owner on Mar 22, 2022. It is now read-only.

Commit a11e84a

Browse files
committed
Add Go modules to vendor/
Signed-off-by: Christopher Crone <[email protected]>
1 parent 4f1e64e commit a11e84a

File tree

842 files changed

+335778
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

842 files changed

+335778
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
- name: Check out code
1515
uses: actions/checkout@v2
1616

17-
- name: Get dependencies
18-
run: go get -v -t -d ./...
17+
- name: Lint
18+
run: make lint
1919

2020
- name: Build
2121
run: make build

Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
.DEFAULT_GOAL := help
22

3+
PACKAGE=github.com/compose-spec/compose-ref
4+
5+
GOFLAGS=-mod=vendor
6+
37
.PHONY: build
48
build: ## Build compose-ref binary
5-
GOPRIVATE=github.com/compose-spec/compose-go go build compose-ref.go
9+
GOPRIVATE=$(PACKAGE) GOFLAGS=$(GOFLAGS) go build compose-ref.go
610

711
.PHONY: test
812
test: ## Run tests
9-
GOPRIVATE=github.com/compose-spec/compose-go go test ./... -v
13+
GOPRIVATE=$(PACKAGE) GOFLAGS=$(GOFLAGS) go test ./... -v
1014

1115
.PHONY: fmt
1216
fmt: ## Format go files

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ require (
44
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
55
github.com/Microsoft/go-winio v0.4.14 // indirect
66
github.com/compose-spec/compose-go v0.0.0-20200131085702-0b38cc2d8e6b
7-
github.com/containerd/containerd v1.3.2
7+
github.com/containerd/containerd v1.3.2 // indirect
88
github.com/docker/distribution v2.7.1+incompatible // indirect
99
github.com/docker/docker v1.4.2-0.20191113042239-ea84732a7725
1010
github.com/docker/go-connections v0.4.0

go.sum

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA
88
github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
99
github.com/compose-spec/compose-go v0.0.0-20200131085702-0b38cc2d8e6b h1:VK0c2Hfrg9FHjvJpWfGwiHPP2UeU0QZ6/5/dN0ehbSQ=
1010
github.com/compose-spec/compose-go v0.0.0-20200131085702-0b38cc2d8e6b/go.mod h1:KoJjdV81vERSyYVuQD63nryyt8ZTlqTWe8JuJIMhRo4=
11-
github.com/compose-spec/compose-go v0.0.0-20200203134931-8fe2177d8940 h1:MPp+H0Q8h0XyOi89BccSo5LxAf2rd/B1cDPjloSZv5k=
1211
github.com/containerd/containerd v1.3.2 h1:ForxmXkA6tPIvffbrDAcPUIB32QgXkt2XFj+F0UxetA=
1312
github.com/containerd/containerd v1.3.2/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA=
1413
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d h1:U+s90UTSYgptZMwQh2aRr3LuazLJIa+Pg3Kc1ylSYVY=

vendor/github.com/Microsoft/go-winio/.gitignore

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Microsoft/go-winio/LICENSE

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Microsoft/go-winio/README.md

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Microsoft/go-winio/backup.go

Lines changed: 280 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)