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
I was trying to run a CI workflow similar to this (taken from here):
let one_hour =60.*.60.let make =Git.command ~logs~label:"make"~timeout:one_hour ~clone:true [
[| "make"; "build" |];
[| "make"; "test" |];
]
let my_test =Git.fetch_head local_repo >>=funsrc ->
Git.run make src >>=fun() ->
Term.return "Tests succeeded"
But I am getting the error Command "make" "build" exited with status 127, suggesting make is unknown. But if I run make build on my console, everything works just fine. Are there any additional steps needed to make this work?
The text was updated successfully, but these errors were encountered:
I was trying to run a CI workflow similar to this (taken from here):
But I am getting the error
Command "make" "build" exited with status 127
, suggestingmake
is unknown. But if I runmake build
on my console, everything works just fine. Are there any additional steps needed to make this work?The text was updated successfully, but these errors were encountered: