File tree 4 files changed +13876
-1489
lines changed 4 files changed +13876
-1489
lines changed Original file line number Diff line number Diff line change @@ -276,13 +276,13 @@ jobs:
276
276
include :
277
277
# Latest Godot with different Rust versions
278
278
- rust : stable
279
- godot : " 3.4.3 "
279
+ godot : " 3.5 "
280
280
postfix : ' '
281
281
- rust : nightly
282
- godot : " 3.4.3 "
282
+ godot : " 3.5 "
283
283
postfix : ' (nightly)'
284
284
- rust : ' 1.56'
285
- godot : " 3.4.3 "
285
+ godot : " 3.5 "
286
286
postfix : ' (msrv 1.56)'
287
287
288
288
# Test with oldest supported engine version
Original file line number Diff line number Diff line change @@ -46,9 +46,9 @@ function findGodot() {
46
46
# Special case for Windows when there is a .bat file
47
47
# Also consider that 'cmd /c' would need 'cmd //c' (https://stackoverflow.com/q/21357813)
48
48
elif
49
- # Don't ask me why Godot returns 255 instead of 0
49
+ # Godot returns 255 for older versions, but 0 for newer ones
50
50
godot.bat --version
51
- [ $? -eq 255 ]
51
+ [[ $? -eq 255 || $? -eq 0 ] ]
52
52
then
53
53
echo " Found 'godot.bat' script"
54
54
godotBin=" godot.bat"
You can’t perform that action at this time.
0 commit comments