In a private cross-platform project I'm using GitHub actions to run my build which goes basically like this:
- install lix with the setup-lix action.
lix download to get the dependencies
lix run lime build <args> to run the build.
This worked smoothly for macos-latest and ubuntu-latest github actions, but on windows-latest, I get this error from the last step:
Error: Could not find haxelib "lime", does it need to be installed?
Failed to invoke `haxelib run-dir lime "C:\Users\runneradmin\AppData\Roaming/haxe/haxe_libraries/lime/8.0.1/haxelib"` because Error: Command failed: haxelib run-dir lime "C:\Users\runneradmin\AppData\Roaming/haxe/haxe_libraries/lime/8.0.1/haxelib"
I know lime is installed, so I'm thinking this has to be a scope resolution issue?
I made a new public repo with a minimal reproduction of the error:
https://github.com/NQNStudios/lix-lime-debug
The latest action run is here, showing that the same workflow succeeds on ubuntu and macos, but not Windows:
https://github.com/NQNStudios/lix-lime-debug/actions/runs/4943468182
In a private cross-platform project I'm using GitHub actions to run my build which goes basically like this:
lix downloadto get the dependencieslix run lime build <args>to run the build.This worked smoothly for macos-latest and ubuntu-latest github actions, but on windows-latest, I get this error from the last step:
I know lime is installed, so I'm thinking this has to be a scope resolution issue?
I made a new public repo with a minimal reproduction of the error:
https://github.com/NQNStudios/lix-lime-debug
The latest action run is here, showing that the same workflow succeeds on ubuntu and macos, but not Windows:
https://github.com/NQNStudios/lix-lime-debug/actions/runs/4943468182