Martin Jambon

Results 235 comments of Martin Jambon

I can help with that. btw it was caught by my CI job that I already had in place. Pretty handy.

`String.split_on_char` is available since ocaml 4.04, and the `Bytes` module is available since 4.02. There's something non-obvious going on here.

I found the issue (`StdLabels.Bytes.blit_string` doesn't exist but `Bytes.blit_string` does). However there are other compatibity issues (`Int` and `Option` modules introduced with 4.08)... Since 4.08 was released 10 months ago,...

Regarding continuous testing for compatibility, I've been using CircleCI which works well. I also learned about GitHub Actions recently. I would not recommend GitHub Actions when another solution is available...

I put a config for CircleCI into the branch [`circleci`](https://github.com/diml/dune-file/tree/circleci/.circleci). It consists of one yaml file which I kept to a minimum and a couple shell scripts. There's also one...

Great. The documentation isn't clear about it, but I'm going to assume CircleCI looks for the config in the main branch only (`master`, as configured on github) rather than using...

We now have the green badge. :tada:

We can leave this issue open in case someone wants to help and support older ocaml versions. We can also close it, I don't mind either way.

I had noticed this error while running dune-deps on dune, but I quickly brushed it off, wrongly assuming that it was an intentionally broken test case :-p The solutions you...

I haven't added support for the real dune syntax, but I added a `--exclude` or `-x` option to work around it. :-p Together with the new `-h` option, we're getting...