-
Notifications
You must be signed in to change notification settings - Fork 1.2k
[new release] avro-simple (0.1) #28910
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
base: master
Are you sure you want to change the base?
Conversation
CHANGES: Initial relase for avro-simple
jmid
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
I can see runtest is timing out on 32-bit (both x86_32 and arm32) after 2 hours.
If you want to investigate locally what is causing it, something like the following should start a 32-bit docker image:
docker run -it --platform linux/i386 ocaml/opam:debian-12-ocaml-5.4
A quicker fix would be to guard runtest with arch != "arm32" & arch != "x86_32"
|
Weird. Those timeouts seem to be infrastructure related, both timed out trying to install dependencies rather than compiling or running tests, plus I'm using this library in JSOO without issues. |
|
Hm, it happened again on x86_32 and arm32, despite rerunning CI and it still triggers when run with Will this also I can see QCheck installed as a dependency, for which a shrinker loop could explain the observed behaviour. |
|
Turns out some of the property tests are long running and might be the cause of those timeouts. Let me remove those from the opam test command and I'll update the source for this PR. |
|
Now I've given up and just disabled those platforms bcff42d I haven't been able to reproduce the issue using docker |
jmid
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, LGTM!
|
Do you know what the circular dep error from opam 2.0 means? A few other
PRs have that error , perhaps it’s an infrastructure issue with the
obuilder spec?
Thanks for your help on this @jmid
…On Thu, 20 Nov 2025 at 9:04 am, Jan Midtgaard ***@***.***> wrote:
***@***.**** approved this pull request.
Thanks, LGTM!
—
Reply to this email directly, view it on GitHub
<#28910 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AABJXOONQ63RG2PO3VZJBXD35TSQXAVCNFSM6AAAAACMIYL5L2VHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZTIOBUHEYTSMJVHE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Pure OCaml implementation of Apache Avro
CHANGES:
Initial relase for avro-simple