-
Notifications
You must be signed in to change notification settings - Fork 671
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
[CI] Remove Stdlib dep from mathcomp #20291
Conversation
de8ae93
to
dde1489
Compare
CI green |
make test-core | ||
make examples | ||
make test-apps | ||
make -j1 all-tests | ||
make -j1 all-examples |
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.
What's going on here?
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.
is there some reason not to do dune build --root . @runtest
? or some elpi specific alias if they don't want to use runtest
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.
make is calling dune multiple times in parallel and dune doesn't like it (I got error messages like "dune is already running, if you're sure, remove _build/.lock")
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.
It wouldn't be just @runtest, there are a few diferent targets.
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.
make is calling dune multiple times in parallel and dune doesn't like it (I got error messages like "dune is already running, if you're sure, remove _build/.lock")
The makefile should say .NOTPARALLEL:
then
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.
C.f. LPCIC/coq-elpi#785
@coqbot merge now |
Following math-comp/math-comp#1343