Stop testing for Godot version 3.2

This commit is contained in:
Leroy Hopson 2022-07-12 12:51:24 +12:00
parent e558162d38
commit d99a750d33
No known key found for this signature in database
GPG key ID: D2747312A6DB51AA
2 changed files with 1 additions and 19 deletions

View file

@ -242,13 +242,10 @@ jobs:
matrix:
os: [ windows-latest, macos-latest, ubuntu-latest ]
bits: [ 64, 32 ]
godot_version: [ 'v3.2-stable', 'v3.3.4-stable', 'v3.4.4-stable', 'v3.5-beta1' ]
godot_version: [ 'v3.3.4-stable', 'v3.4.4-stable', 'v3.5-beta1' ]
exclude:
- os: macos-latest
bits: 32
- os: ubuntu-latest
godot_version: 'v3.2-stable'
bits: 32
steps:
- uses: actions/checkout@v2
with:
@ -264,13 +261,8 @@ jobs:
name: libgodot-xterm-release
path: addons/godot_xterm/native/bin
- name: Run tests
if: ${{ matrix.godot_version != 'v3.2-stable' }}
shell: bash
run: godot --no-window -s addons/gut/gut_cmdln.gd -gconfig=test/.gutconfig.ci.json
- name: Run v3.2 tests
if: ${{ matrix.godot_version == 'v3.2-stable' }}
shell: bash
run: godot --no-window -s addons/gut/gut_cmdln.gd -gconfig=test/.gutconfig.3.2.json
- name: Run unix tests
if: ${{ matrix.os != 'windows-latest' }}
run: godot --no-window -s addons/gut/gut_cmdln.gd -gconfig=test/.gutconfig.unix.json

View file

@ -1,10 +0,0 @@
{
"dirs": [
"res://test/unit"
],
"prefix": "",
"suffix": ".test.gd",
"include_subdirs": true,
"log_level": 2,
"should_exit": true
}