File tree 2 files changed +8
-6
lines changed
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -33,13 +33,15 @@ runs:
33
33
key : godot-${{ runner.os }}-v${{ inputs.godot_ver }}
34
34
- name : " Install Godot"
35
35
if : steps.cache-godot.outputs.cache-hit != 'true'
36
+ # filePath: transforms '3.5.1-rc1' into '3.5.1/rc1' and '3.5.1-stable' into '3.5.1'
36
37
run : |
37
- wget --no-verbose "https://downloads.tuxfamily.org/godotengine/${{ inputs.godot_ver }}/Godot_v${{ inputs.godot_ver }}-stable_linux_headless.64.zip" -O /tmp/godot.zip
38
+ filePath=$(echo "${{ inputs.godot_ver }}" | sed "s!-stable!!" | sed "s!-!/!")
39
+ wget --no-verbose "https://downloads.tuxfamily.org/godotengine/$filePath/Godot_v${{ inputs.godot_ver }}_linux_headless.64.zip" -O /tmp/godot.zip
38
40
unzip -o /tmp/godot.zip -d ${{ runner.temp }}/godot_bin
39
41
shell : bash
40
42
- name : " Set environment variable"
41
43
run : |
42
- echo "GODOT_BIN=${{ runner.temp }}/godot_bin/Godot_v${{ inputs.godot_ver }}-stable_linux_headless .64" >> $GITHUB_ENV
44
+ echo "GODOT_BIN=${{ runner.temp }}/godot_bin/Godot_v${{ inputs.godot_ver }}_linux_headless .64" >> $GITHUB_ENV
43
45
shell : bash
44
46
- name : " Build godot-rust"
45
47
run : |
Original file line number Diff line number Diff line change @@ -276,18 +276,18 @@ jobs:
276
276
include :
277
277
# Latest Godot with different Rust versions
278
278
- rust : stable
279
- godot : " 3.5"
279
+ godot : " 3.5.1-rc1 "
280
280
postfix : ' '
281
281
- rust : nightly
282
- godot : " 3.5"
282
+ godot : " 3.5.1-rc1 "
283
283
postfix : ' (nightly)'
284
284
- rust : ' 1.56'
285
- godot : " 3.5"
285
+ godot : " 3.5.1-rc1 "
286
286
postfix : ' (msrv 1.56)'
287
287
288
288
# Test with oldest supported engine version
289
289
- rust : stable
290
- godot : " 3.2"
290
+ godot : " 3.2-stable "
291
291
postfix : ' '
292
292
build_args : ' --features custom-godot'
293
293
You can’t perform that action at this time.
0 commit comments