You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
opam-depext 1.2.3 was released today. Since then, we have been consistently encountering failures when using this action on Windows. Here's the beginning of our GitHub Actions config:
And here is an excerpt of the log failure from the setup-ocaml step:
sh -ex shell/build.sh
+ ocamlc -I src_ext/lib unix.cma cmdliner.cma -o opam-depext $'depext.ml\r'
don't know what to do with depext.ml
Usage: ocamlc <options> <files>
Try 'ocamlc --help' for more information.
-a Build a library
-alert <list> Enable or disable alerts according to <list>:
+<alertname> enable alert <alertname>
-<alertname> disable alert <alertname>
++<alertname> treat <alertname> as fatal error
--<alertname> treat <alertname> as non-fatal
@<alertname> enable <alertname> and treat it as fatal error
<alertname> can be 'all' to refer to all alert names
Perhaps this action could pin to the previous version of opam-depext until this is resolved?
The text was updated successfully, but these errors were encountered:
Updating to v3 fixed the issue with this job, though now in later steps we are getting issues with carriage returns (\r) in Bash scripts, which weren't causing problems before. For example:
./configure: line 6: $'\r': command not found
Line 6 is just a blank line at the beginning of the script.
Anyway, I'll close this since while this is weird, it's not clear to me that it's due to an issue with setup-ocaml.
opam-depext 1.2.3 was released today. Since then, we have been consistently encountering failures when using this action on Windows. Here's the beginning of our GitHub Actions config:
And here is an excerpt of the log failure from the
setup-ocaml
step:Perhaps this action could pin to the previous version of
opam-depext
until this is resolved?The text was updated successfully, but these errors were encountered: