2shady4u / godot-sqlite

GDExtension wrapper for SQLite (Godot 4.x+)
MIT License
850 stars 76 forks source link

Gd extension test #136

Closed feefladder closed 6 months ago

feefladder commented 1 year ago

GUT for 4.0 branch

2shady4u commented 1 year 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!

2shady4u commented 1 year ago

To stop this video card driver issue I think you would have to use the "headless" version of Godot instead or install additional packages :)

feefladder commented 1 year ago

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

2shady4u commented 1 year ago

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.

feefladder commented 1 year ago

But how do you then run actions like checkout@v3 or something?

2shady4u commented 1 year ago

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

feefladder commented 1 year ago

@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?

2shady4u commented 1 year ago

Hi @feefladder Using modern PowerShell (Invoke-WebRequest) would be best imo: https://adamtheautomator.com/powershell-download-file/