Skip to content

Commit 467e9a7

Browse files
lhchavezg4s8
andauthored
Generate stringer files automatically (#841) (#868)
Added `stringer` annotations to `git.go` for `ErrorClass` and `ErrorCode`. Added `generate` rule for `Makefile` to generate string representations for these types (first building cgo files in `_obj` dir to get C constants). Finally, updated `ci` actions workflow to check that generated files are up to date. Fixes: #543 (cherry picked from commit 5e35338) Co-authored-by: Kirill <[email protected]>
1 parent 2e96f11 commit 467e9a7

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

.github/workflows/ci.yml

+23
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,26 @@ jobs:
102102
sudo ./script/build-libgit2.sh --static --system
103103
- name: Test
104104
run: go test --count=1 --tags "static,system_libgit2" ./...
105+
106+
check-generate:
107+
name: Check generated files were not modified
108+
runs-on: ubuntu-20.04
109+
steps:
110+
- name: Set up Go
111+
uses: actions/setup-go@v1
112+
with:
113+
go-version: '1.17'
114+
id: go
115+
- name: Check out code into the Go module directory
116+
uses: actions/checkout@v2
117+
- name: Install libgit2 build dependencies
118+
run: |
119+
git submodule update --init
120+
sudo apt-get install -y --no-install-recommends libssh2-1-dev
121+
go install golang.org/x/tools/cmd/stringer@latest
122+
- name: Generate files
123+
run: |
124+
export PATH=$(go env GOPATH)/bin:$PATH
125+
make generate
126+
- name: Check nothing changed
127+
run: git diff --quiet --exit-code || (echo "detected changes after generate" ; git status ; exit 1)

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ TEST_ARGS ?= --count=1
22

33
default: test
44

5+
6+
generate: static-build/install/lib/libgit2.a
7+
go generate --tags "static" ./...
8+
59
# System library
610
# ==============
711
# This uses whatever version of libgit2 can be found in the system.

git.go

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import (
1414
"unsafe"
1515
)
1616

17+
//go:generate stringer -type ErrorClass -trimprefix ErrorClass -tags static
1718
type ErrorClass int
1819

1920
const (
@@ -48,6 +49,7 @@ const (
4849
ErrorClassPatch ErrorClass = C.GIT_ERROR_PATCH
4950
)
5051

52+
//go:generate stringer -type ErrorCode -trimprefix ErrorCode -tags static
5153
type ErrorCode int
5254

5355
const (

0 commit comments

Comments
 (0)