Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -331,3 +331,6 @@ ASALocalRun/
.mfractor/

vendor/

# Go module files - go.sum is generated dynamically by make targets
go.sum
4 changes: 2 additions & 2 deletions .pipelines/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- task: GoTool@0
inputs:
version: '1.24.3'
version: '1.25.3'
- task: InstallSSHKey@0
inputs:
knownHostsEntry: '$(KNOWN_HOST)'
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
steps:
- task: GoTool@0
inputs:
version: '1.24.3'
version: '1.25.3'

- script: |
make golangci-lint
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export GO111MODULE=on
#
PKG :=

all: format test
all: tidy format test

.PHONY: tidy
tidy:
Expand All @@ -24,13 +24,13 @@ tidy:
format:
gofmt -s -w rpc/ pkg/

bootstrap:
bootstrap: tidy
GOOS="linux" go get -u google.golang.org/grpc@v1.59.0
GOOS="linux" go install github.com/golang/protobuf/protoc-gen-go@v1.3.2

test: unittest

unittest:
unittest: tidy
$(GOTEST) ./pkg/...

generate: bootstrap
Expand All @@ -47,7 +47,7 @@ ifeq ($(MOCKGEN),)
endif
MOCKGEN=$(shell command -v mockgen 2> /dev/null)

mocks:
mocks: tidy
go mod download github.com/golang/mock
go get github.com/golang/mock@v1.6.0
go generate ./...
Expand Down
12 changes: 5 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/microsoft/moc

go 1.24.0

toolchain go1.24.7
go 1.25.0

require (
github.com/go-logr/logr v1.4.3
Expand All @@ -14,7 +12,7 @@ require (
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.8.3
go.uber.org/multierr v1.11.0
google.golang.org/grpc v1.76.0
google.golang.org/grpc v1.59.0
gopkg.in/yaml.v3 v3.0.1
)

Expand All @@ -23,9 +21,9 @@ require (
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/net v0.42.0 // indirect
golang.org/x/sys v0.34.0 // indirect
golang.org/x/text v0.31.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20251111163417-95abcf5c77ba // indirect
google.golang.org/protobuf v1.36.10 // indirect
golang.org/x/text v0.33.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20260120221211-b8f7ae30c516 // indirect
google.golang.org/protobuf v1.36.11 // indirect
)

replace (
Expand Down
98 changes: 0 additions & 98 deletions go.sum

This file was deleted.

Loading