Skip to content

Commit 3e546aa

Browse files
authoredNov 8, 2022
Merge pull request #251 from kzys/add-v2
Rename the package to github.com/containerd/cgroups/v2
2 parents f4ad3d9 + 5650e1c commit 3e546aa

Some content is hidden

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

47 files changed

+301
-305
lines changed
 

‎.github/workflows/ci.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,11 @@ jobs:
110110

111111
- name: Run cgroup tests
112112
run: |
113-
sudo -E PATH=$PATH GOPATH=$GOPATH \
114-
$(command -v go) test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
113+
$(command -v go) test -exec sudo -v -race -coverprofile=coverage.txt -covermode=atomic ./...
114+
working-directory: src/github.com/containerd/cgroups
115+
116+
- name: Build cgctl
117+
run: make all
115118
working-directory: src/github.com/containerd/cgroups
116119

117120
proto:
@@ -144,8 +147,8 @@ jobs:
144147
- name: Install proto-related tools for Go
145148
run: |
146149
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.28
147-
go install github.com/containerd/protobuild@v0.2.0
148-
go install github.com/containerd/protobuild/cmd/go-fix-acronym@v0.2.0
150+
go install github.com/containerd/protobuild@v0.3.0
151+
go install github.com/containerd/protobuild/cmd/go-fix-acronym@v0.3.0
149152
150153
- name: Compare auto-generated Go files
151154
run: |

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ cgutil:
2323
proto:
2424
protobuild --quiet ${PACKAGES}
2525
# Keep them Go-idiomatic and backward-compatible with the gogo/protobuf era.
26-
go-fix-acronym -w -a '(Cpu|Tcp|Rss)' $(shell find stats/v1/ v2/stats/ -name '*.pb.go')
26+
go-fix-acronym -w -a '(Cpu|Tcp|Rss)' $(shell find stats/v1/ cgroup2/stats/ -name '*.pb.go')

0 commit comments

Comments
 (0)
Please sign in to comment.