It seems like there's an issue with node trying to run the R executable somehow. Only things I've found out so far are that the error -8 is ENOEXEC, causes of which are usually a missing shebang or a missing +x flag (the latter of which seems impossible in our case, given R actually runs correctly for all previous tasks and the tests themselves).
See this PR and notably this failed run.
It seems like there's an issue with node trying to run the R executable somehow. Only things I've found out so far are that the
error -8
isENOEXEC
, causes of which are usually a missing shebang or a missing+x
flag (the latter of which seems impossible in our case, given R actually runs correctly for all previous tasks and the tests themselves).