-
Notifications
You must be signed in to change notification settings - Fork 123
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
Enable github actions for testing #658
Conversation
This tests separately the three packages, should catch packaging issues before releases are made. It also tests the arm builds for macos. Signed-off-by: Marcello Seri <[email protected]>
Signed-off-by: Marcello Seri <[email protected]>
Signed-off-by: Marcello Seri <[email protected]>
Signed-off-by: Marcello Seri <[email protected]>
Thanks a lot for adding test for various platforms other than Ubuntu. The test shows that building on most macos systems fails. Besides the main workflow based on |
The tests here are building the code from the repository not from the released packages in opam. The packages are automatically pinned to the version in the PR branches by the setup-ocaml action (in the way it is configured now) and then use the pinned version.
I will have a look at the Mac action you linked, the failure on Mac arm is expected but I was not expecting the other failure
|
I looked at the mac script, it works only because it is restricted to ocaml 5.1, I think if you enable 4.14 or earlier you should see the same failures. The libquadmath failure should be fixed by the same pr that fixes macos arm64. The main advantage of using setup-ocaml in the way suggested here is that it will ensure that the depext, opam files and tests are properly setup for release and should work properly for the users that want to use the dev version. |
True, this issue arm64 issue is one that requires fixing. Thanks a lot for your help, and I'll take a look at both PRs soon. |
Looks like a reasonable change. 👍🏻 |
This tests separately the three packages, should catch packaging issues before releases are made. It also tests the arm builds for macos (they will fail until #609 is merged)