CI: 添加对sdk版本检查,大于等于 1.19.0 时跳过 32位 windows 编译 #258
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Continuous integration | |
| on: [push, pull_request, merge_group] | |
| concurrency: | |
| group: ${{ github.workflow }}|${{ github.ref_name }} | |
| cancel-in-progress: true | |
| jobs: | |
| min-godot-v4_2: | |
| uses: ./.github/workflows/builds.yml | |
| secrets: inherit | |
| with: | |
| compatibility_minimum: '4.2' | |
| sconsflags: '' | |
| temporary_artifact_suffix: '_no_aoolu' | |
| artifact_suffix: '' | |
| min-godot-v4_2-AOOLU: | |
| uses: ./.github/workflows/builds.yml | |
| secrets: inherit | |
| with: | |
| compatibility_minimum: '4.2' | |
| sconsflags: assume_only_one_local_user=yes | |
| temporary_artifact_suffix: _aoolu | |
| artifact_suffix: _aoolu | |
| min-godot-v4_3: | |
| uses: ./.github/workflows/builds.yml | |
| secrets: inherit | |
| with: | |
| compatibility_minimum: '4.3' | |
| sconsflags: '' | |
| temporary_artifact_suffix: '_no_aoolu' | |
| artifact_suffix: '' | |
| min_godot-v4_3-AOOLU: | |
| uses: ./.github/workflows/builds.yml | |
| secrets: inherit | |
| with: | |
| compatibility_minimum: '4.3' | |
| sconsflags: assume_only_one_local_user=yes | |
| temporary_artifact_suffix: _aoolu | |
| artifact_suffix: _aoolu |