Closed feefladder closed 10 months ago
Hey @feefladder 😄
I see you are having fun with Github Actions :) Just a small tip: You can install Docker and create your own local images on which you can test everything yourself :) In that way you don't have to wait 5 minutes every time to see that Github Action failed 😢
However, it does seem like you are getting quite close!
To stop this video card driver issue I think you would have to use the "headless" version of Godot instead or install additional packages :)
Thanks for the tip! I have docker, but didn't find a way to run github actions locally, could you give a hint/link to a tutorial? EDIT: found it! https://github.com/nektos/act
Thanks for the tip! I have docker, but didn't find a way to run github actions locally, could you give a hint/link to a tutorial? EDIT: found it! https://github.com/nektos/act
Yes, Nektos is one way to do it 😄 In most cases I just use Docker images (without anything related to Github Actions) as this already helps catching all the OS specific issues/errors.
But how do you then run actions like checkout@v3 or something?
But how do you then run actions like checkout@v3 or something?
That would just be git clone
😄
In most cases its your self-defined steps that fail and that need extensive debugging.
checkout@v3 or other Github actions almost never fail :p
@2shady4u It's working now for mac and Ubuntu. In Windows I could not get wget command to work, but I think you'll know an easy solution to this?
Hi @feefladder Using modern PowerShell (Invoke-WebRequest) would be best imo: https://adamtheautomator.com/powershell-download-file/
GUT for 4.0 branch