2023-07-28 18:17:48 +00:00
|
|
|
name: 🪟 Windows builds
|
|
|
|
on:
|
|
|
|
workflow_call:
|
2023-07-29 21:16:10 +00:00
|
|
|
inputs:
|
2023-08-01 16:06:19 +00:00
|
|
|
godot-treeish:
|
2023-07-29 21:16:10 +00:00
|
|
|
description: A tag, branch or commit hash in the Godot repository.
|
|
|
|
type: string
|
|
|
|
default: master
|
2023-08-01 16:06:19 +00:00
|
|
|
limboai-treeish:
|
2023-07-29 21:16:10 +00:00
|
|
|
description: A tag, branch or commit hash in the LimboAI repository.
|
|
|
|
type: string
|
|
|
|
default: master
|
2023-12-29 12:10:26 +00:00
|
|
|
test-build:
|
2023-12-29 14:22:33 +00:00
|
|
|
description: Should we perform only a limited number of test builds?
|
2023-12-29 12:10:26 +00:00
|
|
|
type: boolean
|
|
|
|
default: false
|
2023-07-28 18:17:48 +00:00
|
|
|
|
|
|
|
workflow_dispatch:
|
2023-07-29 21:16:10 +00:00
|
|
|
inputs:
|
2023-08-01 16:06:19 +00:00
|
|
|
godot-treeish:
|
2023-07-29 21:16:10 +00:00
|
|
|
description: A tag, branch or commit hash in the Godot repository.
|
|
|
|
type: string
|
|
|
|
default: master
|
2023-08-01 16:06:19 +00:00
|
|
|
limboai-treeish:
|
2023-07-29 21:16:10 +00:00
|
|
|
description: A tag, branch or commit hash in the LimboAI repository.
|
|
|
|
type: string
|
|
|
|
default: master
|
2023-12-29 12:10:26 +00:00
|
|
|
test-build:
|
2023-12-29 14:22:33 +00:00
|
|
|
description: Should we perform only a limited number of test builds?
|
2023-12-29 12:10:26 +00:00
|
|
|
type: boolean
|
|
|
|
default: false
|
2023-07-28 18:17:48 +00:00
|
|
|
|
|
|
|
# Global Settings
|
|
|
|
env:
|
|
|
|
SCONS_CACHE_MSVC_CONFIG: true
|
|
|
|
SCONS_CACHE_LIMIT: 4096
|
2023-07-29 21:16:10 +00:00
|
|
|
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"
|
2023-12-29 12:10:26 +00:00
|
|
|
name: ${{ matrix.opts.name }}
|
2023-07-28 18:17:48 +00:00
|
|
|
strategy:
|
2023-07-29 09:27:29 +00:00
|
|
|
fail-fast: false
|
2023-07-28 18:17:48 +00:00
|
|
|
matrix:
|
2023-12-29 12:10:26 +00:00
|
|
|
opts:
|
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-12-29 12:10:26 +00:00
|
|
|
should-build: true
|
2023-07-28 18:17:48 +00:00
|
|
|
|
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-12-29 12:10:26 +00:00
|
|
|
should-build: ${{ !inputs.test-build }}
|
2023-07-28 18:17:48 +00:00
|
|
|
|
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-12-29 12:10:26 +00:00
|
|
|
should-build: ${{ !inputs.test-build }}
|
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-12-29 12:10:26 +00:00
|
|
|
# should-build: ${{ !inputs.test-build }}
|
2023-07-28 18:17:48 +00:00
|
|
|
|
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-12-29 12:10:26 +00:00
|
|
|
should-build: ${{ !inputs.test-build }}
|
2023-07-28 18:17:48 +00:00
|
|
|
|
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-12-29 12:10:26 +00:00
|
|
|
should-build: ${{ !inputs.test-build }}
|
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-12-29 14:22:33 +00:00
|
|
|
should-build: true
|
2023-07-28 18:17:48 +00:00
|
|
|
|
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-12-29 12:10:26 +00:00
|
|
|
should-build: ${{ !inputs.test-build }}
|
2023-07-28 18:17:48 +00:00
|
|
|
|
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-12-29 12:10:26 +00:00
|
|
|
should-build: ${{ !inputs.test-build }}
|
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-12-29 12:10:26 +00:00
|
|
|
# should-build: ${{ !inputs.test-build }}
|
2023-07-28 18:17:48 +00:00
|
|
|
|
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
|
2023-09-14 11:14:57 +00:00
|
|
|
arch: x86_32
|
2023-07-28 18:17:48 +00:00
|
|
|
build-mono: true
|
2023-12-29 12:10:26 +00:00
|
|
|
should-build: ${{ !inputs.test-build }}
|
2023-07-28 18:17:48 +00:00
|
|
|
|
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
|
2023-12-29 12:10:26 +00:00
|
|
|
should-build: ${{ !inputs.test-build }}
|
|
|
|
|
|
|
|
exclude:
|
2024-03-10 13:24:56 +00:00
|
|
|
- { opts: { should-build: false } }
|
2023-07-29 09:27:29 +00:00
|
|
|
|
|
|
|
env:
|
2023-12-29 12:10:26 +00:00
|
|
|
BIN: godot.windows.${{matrix.opts.target}}.${{matrix.opts.arch}}${{ matrix.opts.build-mono == true && '.mono' || '' }}
|
2023-07-28 18:17:48 +00:00
|
|
|
|
|
|
|
steps:
|
2023-08-01 15:31:53 +00:00
|
|
|
- name: Clone Godot
|
2023-11-09 14:07:29 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-07-28 18:17:48 +00:00
|
|
|
with:
|
|
|
|
repository: godotengine/godot
|
2023-08-01 16:06:19 +00:00
|
|
|
ref: ${{ inputs.godot-treeish }}
|
2023-07-28 18:17:48 +00:00
|
|
|
|
2023-08-01 15:31:53 +00:00
|
|
|
- name: Clone LimboAI module
|
2023-11-09 14:07:29 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-07-28 18:17:48 +00:00
|
|
|
with:
|
|
|
|
path: modules/limboai
|
2023-08-01 16:06:19 +00:00
|
|
|
ref: ${{ inputs.limboai-treeish }}
|
2023-07-28 18:17:48 +00:00
|
|
|
|
2023-08-02 16:50:17 +00:00
|
|
|
# Inits GODOT_VERSION, LIMBOAI_VERSION and NAME_PREFIX environment variables.
|
|
|
|
- uses: ./modules/limboai/.github/actions/init-version
|
|
|
|
|
2023-07-28 18:17:48 +00:00
|
|
|
- name: Set up Python 3.x
|
2024-03-10 13:24:56 +00:00
|
|
|
uses: actions/setup-python@v5
|
2023-07-28 18:17:48 +00:00
|
|
|
with:
|
2024-03-10 13:24:56 +00:00
|
|
|
python-version: "3.x"
|
|
|
|
architecture: "x64"
|
2023-07-28 18:17:48 +00:00
|
|
|
|
2023-08-01 15:31:53 +00:00
|
|
|
- name: Set up scons
|
2023-07-28 18:17:48 +00:00
|
|
|
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
|
|
|
|
|
2023-08-01 15:31:53 +00:00
|
|
|
- name: Set up MSVC problem matcher
|
2023-07-28 18:17:48 +00:00
|
|
|
uses: ammaraskar/msvc-problem-matcher@master
|
|
|
|
|
2023-08-01 15:31:53 +00:00
|
|
|
- name: Set up scons cache
|
2024-03-10 13:24:56 +00:00
|
|
|
uses: actions/cache@v4
|
2023-07-31 20:45:24 +00:00
|
|
|
with:
|
|
|
|
path: ${{github.workspace}}/.scons_cache/
|
2023-09-13 08:50:53 +00:00
|
|
|
key: ${{env.BIN}}-${{inputs.godot-treeish}}-${{inputs.limboai-treeish}}-${{env.LIMBOAI_VERSION}}
|
2023-07-31 20:45:24 +00:00
|
|
|
restore-keys: |
|
2023-09-13 08:50:53 +00:00
|
|
|
${{env.BIN}}-${{inputs.godot-treeish}}-${{inputs.limboai-treeish}}-${{env.LIMBOAI_VERSION}}
|
|
|
|
${{env.BIN}}-${{inputs.godot-treeish}}-${{inputs.limboai-treeish}}
|
|
|
|
${{env.BIN}}-${{inputs.godot-treeish}}
|
2023-07-31 20:45:24 +00:00
|
|
|
|
2023-07-28 18:17:48 +00:00
|
|
|
- name: Compilation
|
|
|
|
env:
|
|
|
|
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
|
|
|
|
run: |
|
2023-12-29 12:10:26 +00:00
|
|
|
scons -j2 platform=windows target=${{matrix.opts.target}} arch=${{matrix.opts.arch}} module_mono_enabled=${{matrix.opts.build-mono}} ${{env.SCONSFLAGS}}
|
2023-07-28 18:17:48 +00:00
|
|
|
|
|
|
|
- name: Generate C# glue
|
2023-12-29 12:10:26 +00:00
|
|
|
if: matrix.opts.build-mono && matrix.opts.target == 'editor'
|
2023-08-02 22:17:50 +00:00
|
|
|
env:
|
|
|
|
GODOT_VERSION_STATUS: limboai
|
2023-07-28 18:17:48 +00:00
|
|
|
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
|
2023-12-29 12:10:26 +00:00
|
|
|
if: matrix.opts.build-mono && matrix.opts.target == 'editor'
|
2023-08-02 22:17:50 +00:00
|
|
|
env:
|
|
|
|
GODOT_VERSION_STATUS: limboai
|
2023-07-28 18:17:48 +00:00
|
|
|
run: |
|
2023-08-03 09:16:46 +00:00
|
|
|
python ./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
|
2023-08-01 19:13:25 +00:00
|
|
|
shell: bash
|
2023-08-01 15:31:53 +00:00
|
|
|
env:
|
2023-12-29 12:10:26 +00:00
|
|
|
OUTDIR: ${{ startsWith(matrix.opts.target, 'template') && 'out/templates' || 'out/' }}
|
2023-07-28 18:17:48 +00:00
|
|
|
run: |
|
2023-08-01 19:13:25 +00:00
|
|
|
rm -f bin/*.{exp,lib,pdb}
|
2023-09-14 07:36:36 +00:00
|
|
|
mkdir -p ${{env.OUTDIR}}
|
2023-08-01 19:13:25 +00:00
|
|
|
mv bin/* ${{env.OUTDIR}}
|
2023-09-14 07:36:36 +00:00
|
|
|
ls -R out/
|
|
|
|
|
|
|
|
- name: Rename templates
|
2023-12-29 12:10:26 +00:00
|
|
|
if: startsWith(matrix.opts.target, 'template')
|
2023-09-14 07:36:36 +00:00
|
|
|
shell: bash
|
|
|
|
env:
|
2023-12-29 12:10:26 +00:00
|
|
|
BUILD_TYPE: ${{ endsWith(matrix.opts.target, 'release') && 'release' || 'debug' }}
|
2023-09-14 07:36:36 +00:00
|
|
|
run: |
|
2023-12-29 12:10:26 +00:00
|
|
|
mv out/templates/${BIN}.exe out/templates/windows_${BUILD_TYPE}_${{matrix.opts.arch}}.exe
|
|
|
|
mv out/templates/${BIN}.console.exe out/templates/windows_${BUILD_TYPE}_${{matrix.opts.arch}}_console.exe
|
2023-11-29 13:32:30 +00:00
|
|
|
echo "${GODOT_VERSION}.limboai+${LIMBOAI_VERSION}" > out/templates/version.txt
|
2023-09-14 07:36:36 +00:00
|
|
|
ls -R out/
|
2023-07-28 18:17:48 +00:00
|
|
|
|
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-artifact@v3
|
2023-08-01 15:31:53 +00:00
|
|
|
env:
|
2023-12-29 12:10:26 +00:00
|
|
|
NAME_EDITOR: ${{env.NAME_PREFIX}}.${{matrix.opts.target}}.windows.${{matrix.opts.arch}}${{ matrix.opts.build-mono == true && '.mono' || '' }}
|
|
|
|
NAME_TEMPLATES: ${{env.NAME_PREFIX}}.export-templates${{ matrix.opts.build-mono == true && '.mono' || '' }}
|
2023-07-28 18:17:48 +00:00
|
|
|
with:
|
2023-12-29 12:10:26 +00:00
|
|
|
name: ${{ startsWith(matrix.opts.target, 'template') && env.NAME_TEMPLATES || env.NAME_EDITOR }}
|
2023-08-01 15:31:53 +00:00
|
|
|
path: out/*
|