File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -361,20 +361,22 @@ jobs:
361
361
artifact-name : linux-4.4
362
362
godot-binary : godot.linuxbsd.editor.dev.x86_64
363
363
godot-prebuilt-patch : ' 4.4'
364
- hot-reload : stable
364
+ hot-reload : api-4-4
365
365
366
366
- name : linux-4.3
367
367
os : ubuntu-22.04
368
368
artifact-name : linux-4.3
369
369
godot-binary : godot.linuxbsd.editor.dev.x86_64
370
370
godot-prebuilt-patch : ' 4.3'
371
+ hot-reload : api-4-3
371
372
372
373
# Can be disabled in the future (already covered by memcheck). For now kept on to differentiate quicker.
373
374
- name : linux-4.2
374
375
os : ubuntu-22.04
375
376
artifact-name : linux-4.2
376
377
godot-binary : godot.linuxbsd.editor.dev.x86_64
377
378
godot-prebuilt-patch : ' 4.2.2'
379
+ hot-reload : api-4-2
378
380
379
381
# Memory checks: special Godot binaries compiled with AddressSanitizer/LeakSanitizer to detect UB/leaks.
380
382
# See also https://rustc-dev-guide.rust-lang.org/sanitizers.html.
Original file line number Diff line number Diff line change @@ -11,8 +11,10 @@ if [[ $1 == "api-custom" ]]; then
11
11
cargoArgs=" --features godot/api-custom"
12
12
elif [[ $1 == " stable" ]]; then
13
13
cargoArgs=" "
14
+ elif [[ $1 == api-4-* ]]; then
15
+ cargoArgs=" --features godot/$1 "
14
16
else
15
- echo " [Bash] Error: Unknown argument '$1 '. Expected 'api-custom' or 'stable '."
17
+ echo " [Bash] Error: Unknown argument '$1 '. Expected 'stable', ' api-custom' or 'api-4.* '."
16
18
exit 1
17
19
fi
18
20
You can’t perform that action at this time.
0 commit comments