You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Confirms that it makes v1 work with go1.16. With this:
go get github.com/maruel/panicparse/cmd/pp
does the right thing! It leverages an updated version of cmd/ and
internal/, and then uses stack@v2 instead of stack/ here.
Found a way to hack my way through:
- Copied .github/workflows/test.yaml from v2.1.0.
- Deleted all of vendor/. It was breaking the CI tests.
- Updated stack/context_test.go to make it work with go1.16.
- Updated stack/context_test.go to make it work with all of vendor/
removed.
- Use v2.1.0 version of the executables in cmd/ and //main.go.
- Use v2.1.0 version of the internal/.
- Copied stack@v2.1.0 back into
vendor/github.com/maruel/panicparse/v2/stack. Since older Go versions still
look into it, they are able to load v2 even if go modules are disabled.
0 commit comments