Skip to content

Commit

Permalink
fix: fix make regenerate and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrbrt committed Oct 18, 2022
1 parent 4f8afe8 commit f9e5895
Show file tree
Hide file tree
Showing 372 changed files with 20,370 additions and 19,724 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
uses: actions/checkout@v3

- name: Setup go
- uses: actions/setup-go@v3
uses: actions/setup-go@v3
with:
go-version: 1.18
go-version: 1.19

- name: Setup protoc
env:
Expand All @@ -29,8 +29,6 @@ jobs:

- name: Protoc version
run: PATH=$HOME/bin:$PATH protoc --version
- name: env
run: env && go env && pwd

- name: Build server all
run: make buildserverall
run: PATH=$HOME/bin:$PATH make buildserverall
2 changes: 1 addition & 1 deletion .github/workflows/lint-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
statuses: write # for amannn/action-semantic-pull-request to mark status of analyzed PR
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v4.5.0
- uses: amannn/action-semantic-pull-request@v5.0.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/proto-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: bufbuild/buf-setup-action@v1.7.0
- uses: bufbuild/buf-setup-action@v1.8.0
- uses: bufbuild/buf-push-action@v1
with:
buf_token: ${{ secrets.BUF_TOKEN }}
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Changelog

## [Unreleased]

### Bug Fixes

- [#14](https://github.com/cosmos/gogoproto/pull/14) Fix `make regenerate`.

## [v1.4.2](https://github.com/cosmos/gogoproto/releases/tag/v1.4.2) - 2022-09-14

### Features

- [#13](https://github.com/cosmos/gogoproto/pull/13) Add `AllFileDescriptors` function.

### Improvements

- [#8](https://github.com/cosmos/gogoproto/pull/8) Fix typo in `doc.go`.
- [#8](https://github.com/cosmos/gogoproto/pull/8) Support for merging messages implementing Merger which are embedded by value.
- [#8](https://github.com/cosmos/gogoproto/pull/8) Use reflect.Value.String() for String kinds in proto equal.

## [v1.4.1](https://github.com/cosmos/gogoproto/releases/tag/v1.4.1) - 2022-08-30

### Improvements

- [#6](https://github.com/cosmos/gogoproto/pull/6) Add buf.yaml for cosmos/gogo-proto module.

### Bug Fixes

- [226206f](https://github.com/cosmos/gogoproto/commit/226206f39bd7276e88ec684ea0028c18ec2c91ae) Fixed order of imports, make stable generation result.

## [v1.4.0](https://github.com/cosmos/gogoproto/releases/tag/v1.4.0) - 2022-03-18

- Migration from [regen-network/protobuf](https://github.com/regen-network/protobuf), a fork of [gogo/protobuf](https://github.com/gogo/protobuf) used by the Cosmos SDK to [cosmos/gogoproto](https://github.com/cosmos/gogoproto) (this repository).
5 changes: 0 additions & 5 deletions GOLANG_CONTRIBUTORS

This file was deleted.

3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ install:
go install ./protoc-gen-gogofaster
go install ./protoc-gen-gogoslick
go install ./protoc-gen-gostring
go install ./protoc-gen-gogotypes
go install ./protoc-min-version
go install ./protoc-gen-combo
go install ./protoc-gen-gocosmos
Expand Down Expand Up @@ -151,7 +152,7 @@ regenerate: install
tests:
go build ./test/enumprefix
go test ./...
(cd test/stdtypes && make test)
# (cd test/stdtypes && make test) # flaky tests present on gogo/protobuf

vet:
go get golang.org/x/tools/go/analysis/passes/shadow/cmd/shadow
Expand Down
190 changes: 0 additions & 190 deletions bench.md

This file was deleted.

Loading

0 comments on commit f9e5895

Please sign in to comment.