limboai/.github/workflows/windows.yml

161 lines
4.6 KiB
YAML
Raw Normal View History

2023-07-28 18:17:48 +00:00
name: 🪟 Windows builds
on:
workflow_call:
inputs:
godot_treeish:
description: A tag, branch or commit hash in the Godot repository.
type: string
default: master
limboai_treeish:
description: A tag, branch or commit hash in the LimboAI repository.
type: string
default: master
2023-07-28 18:17:48 +00:00
workflow_dispatch:
inputs:
godot_treeish:
description: A tag, branch or commit hash in the Godot repository.
type: string
default: master
limboai_treeish:
description: A tag, branch or commit hash in the LimboAI repository.
type: string
default: master
2023-07-28 18:17:48 +00:00
# Global Settings
env:
SCONS_CACHE_MSVC_CONFIG: true
SCONS_CACHE_LIMIT: 4096
SCONSFLAGS: production=yes tests=no verbose=yes warnings=extra werror=yes
2023-07-28 18:17:48 +00:00
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
windows-builds:
runs-on: "windows-latest"
name: ${{ matrix.name }}
strategy:
2023-07-29 09:27:29 +00:00
fail-fast: false
2023-07-28 18:17:48 +00:00
matrix:
include:
2023-07-29 21:29:21 +00:00
- name: Editor (x86_64, release)
2023-07-28 18:17:48 +00:00
target: editor
arch: x86_64
build-mono: false
2023-07-29 21:29:21 +00:00
- name: Template (x86_64, release)
2023-07-28 18:17:48 +00:00
target: template_release
arch: x86_64
build-mono: false
2023-07-29 21:29:21 +00:00
- name: Template (x86_64, debug)
2023-07-28 18:17:48 +00:00
target: template_debug
arch: x86_64
2023-07-29 09:27:29 +00:00
build-mono: false
2023-07-28 18:17:48 +00:00
2023-07-29 21:29:21 +00:00
# - name: Editor (x86_32, release)
2023-07-28 18:17:48 +00:00
# target: editor
# arch: x86_32
# build-mono: false
2023-07-29 21:29:21 +00:00
- name: Template (x86_32, release)
2023-07-28 18:17:48 +00:00
target: template_release
arch: x86_32
build-mono: false
2023-07-29 21:29:21 +00:00
- name: Template (x86_32, debug)
2023-07-28 18:17:48 +00:00
target: template_debug
arch: x86_32
2023-07-29 09:27:29 +00:00
build-mono: false
2023-07-28 18:17:48 +00:00
2023-07-29 21:29:21 +00:00
- name: Editor .NET (x86_64, release)
2023-07-28 18:17:48 +00:00
target: editor
arch: x86_64
build-mono: true
2023-07-29 21:29:21 +00:00
- name: Template .NET (x86_64, release)
2023-07-28 18:17:48 +00:00
target: template_release
arch: x86_64
build-mono: true
2023-07-29 21:29:21 +00:00
- name: Template .NET (x86_64, debug)
2023-07-28 18:17:48 +00:00
target: template_debug
arch: x86_64
2023-07-29 09:27:29 +00:00
build-mono: true
2023-07-28 18:17:48 +00:00
2023-07-29 21:29:21 +00:00
# - name: Editor .NET (x86_32, release)
2023-07-28 18:17:48 +00:00
# target: editor
# arch: x86_32
# build-mono: true
2023-07-29 21:29:21 +00:00
- name: Template .NET (x86_32, release)
2023-07-28 18:17:48 +00:00
target: template_release
arch: x86_64
build-mono: true
2023-07-29 21:29:21 +00:00
- name: Template .NET (x86_32, debug)
2023-07-28 18:17:48 +00:00
target: template_debug
arch: x86_32
2023-07-29 09:27:29 +00:00
build-mono: true
env:
BIN: godot.windows.${{matrix.target}}.${{matrix.arch}}${{ matrix.build-mono == true && '.mono' || '' }}
2023-07-28 18:17:48 +00:00
steps:
# Clone Godot
- uses: actions/checkout@v3
with:
repository: godotengine/godot
ref: ${{ inputs.godot_treeish }}
2023-07-28 18:17:48 +00:00
# Clone LimboAI module
- uses: actions/checkout@v3
with:
path: modules/limboai
ref: ${{ inputs.limboai_treeish }}
2023-07-28 18:17:48 +00:00
# Use python 3.x release (works cross platform)
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
# Semantic version range syntax or exact version of a Python version
2023-07-29 09:27:29 +00:00
python-version: '3.x'
2023-07-28 18:17:48 +00:00
# Optional - x64 or x86 architecture, defaults to x64
2023-07-29 09:27:29 +00:00
architecture: 'x64'
2023-07-28 18:17:48 +00:00
- name: Setup scons
run: |
python -c "import sys; print(sys.version)"
python -m pip install scons==4.4.0
2023-07-29 09:27:29 +00:00
python --version
2023-07-28 18:17:48 +00:00
scons --version
- name: Setup MSVC problem matcher
uses: ammaraskar/msvc-problem-matcher@master
- name: Compilation
env:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
2023-07-29 09:27:29 +00:00
scons -j2 platform=windows target=${{matrix.target}} arch=${{matrix.arch}} module_mono_enabled=${{matrix.build-mono}} ${{env.SCONSFLAGS}}
2023-07-28 18:17:48 +00:00
- name: Generate C# glue
if: matrix.build-mono && matrix.target == 'editor'
run: |
2023-07-30 10:56:20 +00:00
./bin/${{ env.BIN }} --headless --generate-mono-glue ./modules/mono/glue || true
2023-07-28 18:17:48 +00:00
- name: Build .NET solutions
if: matrix.build-mono && matrix.target == 'editor'
run: |
./modules/mono/build_scripts/build_assemblies.py --godot-output-dir=./bin --godot-platform=windows
2023-07-28 18:17:48 +00:00
- name: Prepare artifact
run: |
Remove-Item bin/* -Include *.exp,*.lib,*.pdb -Force
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
2023-07-29 21:44:12 +00:00
name: godot.limboai.${{matrix.target}}.windows.${{matrix.arch}}${{ matrix.build-mono == true && '.mono' || '' }}
2023-07-28 18:17:48 +00:00
path: bin/*