-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Avoid unicode filename #78
Conversation
Test failures are legit. Also there's probably 2~3 comments to update. |
9ec113c
to
b392e85
Compare
Thanks! Tests should be passing now. I looked for comments that needed changes ( |
Codecov Report
@@ Coverage Diff @@
## main #78 +/- ##
=====================================
Coverage 82.1% 82.1%
=====================================
Files 12 12
Lines 2761 2761
=====================================
Hits 2267 2267
Misses 423 423
Partials 71 71 Continue to review full report at Codecov.
|
This is similar to 53e9d3e. Over at https://github.com/cockroachdb/cockroach, we use bazel and it chokes on this file: ``` java.io.IOException: Error extracting [...]/com_github_maruel_panicparse_v2-v2.2.1.zip to [...]: [...]/com_github_maruel_panicparse_v2/cmd/panic/internal/utf8/?tf8.go (Illegal byte sequence) ``` which is why we're on a fork so far. It would be nice to avoid this. There is an (eternal, it seems) [upstream discussion], so there is little home of bazel starting to support non-unicode filenames. I wonder if the loss in test coverage (if any) is acceptable in return for avoiding build problems like the ones we've been seeing. [upstream discussion]: bazelbuild/bazel#374
Thanks! |
Published new release: https://github.com/maruel/panicparse/releases/tag/v2.2.2 |
Wonderful, thanks a lot Marc-Antoine. |
This is a reincarnation of cockroachdb#81089, which was reverted in cockroachdb#81126. This time around, we pick up upstream PR [78] which renames the unicode file that prompted cockroachdb#81126. [78]: maruel/panicparse#78 Release note: None
This is a reincarnation of cockroachdb#81089, which was reverted in cockroachdb#81126. This time around, we pick up upstream PR [78] which renames the unicode file that prompted cockroachdb#81126. [78]: maruel/panicparse#78 Release note: None
81240: vendor: bump panicparse to v2.2.2 r=HonoreDB,rickystewart a=tbg This is a reincarnation of #81089, which was reverted in #81126. This time around, we pick up upstream PR [78] which renames the unicode file that prompted #81126. [78]: maruel/panicparse#78 Release note: None Co-authored-by: Tobias Grieger <tobias.b.grieger@gmail.com>
This is similar to 53e9d3e.
Over at https://github.com/cockroachdb/cockroach, we use bazel and it
chokes on this file:
which is why we're on a fork so far. It would be nice to avoid this.
There is an (eternal, it seems) upstream discussion, so there is
little home of bazel starting to support non-unicode filenames.
I wonder if the loss in test coverage (if any) is acceptable in return
for avoiding build problems like the ones we've been seeing.