2023-07-28 18:17:48 +00:00
|
|
|
name: 🪟 Windows builds
|
|
|
|
on:
|
|
|
|
workflow_call:
|
2023-07-29 21:16:10 +00:00
|
|
|
inputs:
|
2024-03-10 16:23:59 +00:00
|
|
|
godot-ref:
|
2023-07-29 21:16:10 +00:00
|
|
|
description: A tag, branch or commit hash in the Godot repository.
|
|
|
|
type: string
|
|
|
|
default: master
|
2024-03-10 16:23:59 +00:00
|
|
|
limboai-ref:
|
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:
|
2024-03-10 16:23:59 +00:00
|
|
|
godot-ref:
|
2023-07-29 21:16:10 +00:00
|
|
|
description: A tag, branch or commit hash in the Godot repository.
|
|
|
|
type: string
|
|
|
|
default: master
|
2024-03-10 16:23:59 +00:00
|
|
|
limboai-ref:
|
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
|
2024-11-16 21:02:30 +00:00
|
|
|
SCONSFLAGS: production=yes use_mingw=yes verbose=yes warnings=no progress=no
|
2023-07-28 18:17:48 +00:00
|
|
|
DOTNET_NOLOGO: true
|
|
|
|
DOTNET_CLI_TELEMETRY_OPTOUT: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
windows-builds:
|
2024-11-18 00:57:25 +00:00
|
|
|
runs-on: "ubuntu-24.04"
|
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:
|
2024-07-30 12:20:46 +00:00
|
|
|
# * Standard x86_64
|
|
|
|
|
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
|
2024-11-16 21:02:30 +00:00
|
|
|
llvm: false
|
2024-03-10 16:23:59 +00:00
|
|
|
dotnet: 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
|
2024-11-16 21:02:30 +00:00
|
|
|
llvm: false
|
2024-03-10 16:23:59 +00:00
|
|
|
dotnet: 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
|
2024-11-16 21:02:30 +00:00
|
|
|
llvm: false
|
2024-03-10 16:23:59 +00:00
|
|
|
dotnet: false
|
2023-12-29 12:10:26 +00:00
|
|
|
should-build: ${{ !inputs.test-build }}
|
2023-07-28 18:17:48 +00:00
|
|
|
|
2024-07-30 12:20:46 +00:00
|
|
|
# * Standard x86_32
|
|
|
|
|
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
|
2024-11-16 21:02:30 +00:00
|
|
|
# llvm: false
|
2024-03-10 16:23:59 +00:00
|
|
|
# dotnet: 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
|
2024-11-16 21:02:30 +00:00
|
|
|
llvm: false
|
2024-03-10 16:23:59 +00:00
|
|
|
dotnet: 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
|
2024-11-16 21:02:30 +00:00
|
|
|
llvm: false
|
2024-03-10 16:23:59 +00:00
|
|
|
dotnet: false
|
2023-12-29 12:10:26 +00:00
|
|
|
should-build: ${{ !inputs.test-build }}
|
2023-07-28 18:17:48 +00:00
|
|
|
|
2024-07-30 12:20:46 +00:00
|
|
|
# * Standard arm64
|
|
|
|
|
|
|
|
# - name: Editor (arm64, release)
|
|
|
|
# target: editor
|
|
|
|
# arch: arm64
|
2024-11-16 21:02:30 +00:00
|
|
|
# llvm: true
|
2024-07-30 12:20:46 +00:00
|
|
|
# dotnet: false
|
|
|
|
# should-build: ${{ !inputs.test-build }}
|
|
|
|
|
|
|
|
- name: Template (arm64, release)
|
|
|
|
target: template_release
|
|
|
|
arch: arm64
|
2024-11-16 21:02:30 +00:00
|
|
|
llvm: true
|
2024-07-30 12:20:46 +00:00
|
|
|
dotnet: false
|
|
|
|
should-build: ${{ !inputs.test-build }}
|
|
|
|
|
|
|
|
- name: Template (arm64, debug)
|
|
|
|
target: template_debug
|
|
|
|
arch: arm64
|
2024-11-16 21:02:30 +00:00
|
|
|
llvm: true
|
2024-07-30 12:20:46 +00:00
|
|
|
dotnet: false
|
|
|
|
should-build: ${{ !inputs.test-build }}
|
|
|
|
|
|
|
|
# * .NET x86_64
|
|
|
|
|
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
|
2024-11-16 21:02:30 +00:00
|
|
|
llvm: false
|
2024-03-10 16:23:59 +00:00
|
|
|
dotnet: true
|
2024-08-11 10:56:45 +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, release)
|
2023-07-28 18:17:48 +00:00
|
|
|
target: template_release
|
|
|
|
arch: x86_64
|
2024-11-16 21:02:30 +00:00
|
|
|
llvm: false
|
2024-03-10 16:23:59 +00:00
|
|
|
dotnet: 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
|
2024-11-16 21:02:30 +00:00
|
|
|
llvm: false
|
2024-03-10 16:23:59 +00:00
|
|
|
dotnet: true
|
2023-12-29 12:10:26 +00:00
|
|
|
should-build: ${{ !inputs.test-build }}
|
2023-07-28 18:17:48 +00:00
|
|
|
|
2024-07-30 12:20:46 +00:00
|
|
|
# * .NET x86_32
|
|
|
|
|
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
|
2024-11-16 21:02:30 +00:00
|
|
|
# llvm: false
|
2024-03-10 16:23:59 +00:00
|
|
|
# dotnet: 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
|
2024-11-16 21:02:30 +00:00
|
|
|
llvm: false
|
2024-03-10 16:23:59 +00:00
|
|
|
dotnet: 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
|
2024-11-16 21:02:30 +00:00
|
|
|
llvm: false
|
2024-03-10 16:23:59 +00:00
|
|
|
dotnet: true
|
2023-12-29 12:10:26 +00:00
|
|
|
should-build: ${{ !inputs.test-build }}
|
|
|
|
|
2024-07-30 12:20:46 +00:00
|
|
|
# * .NET arm64
|
|
|
|
|
2024-11-16 21:02:30 +00:00
|
|
|
# - name: Editor .NET (arm64, release)
|
2024-07-30 12:20:46 +00:00
|
|
|
# target: editor
|
|
|
|
# arch: arm64
|
2024-11-16 21:02:30 +00:00
|
|
|
# llvm: true
|
2024-07-30 12:20:46 +00:00
|
|
|
# dotnet: true
|
|
|
|
# should-build: ${{ !inputs.test-build }}
|
|
|
|
|
2024-11-16 21:02:30 +00:00
|
|
|
- name: Template .NET (arm64, release)
|
2024-07-30 12:20:46 +00:00
|
|
|
target: template_release
|
|
|
|
arch: arm64
|
2024-11-16 21:02:30 +00:00
|
|
|
llvm: true
|
2024-07-30 12:20:46 +00:00
|
|
|
dotnet: true
|
|
|
|
should-build: ${{ !inputs.test-build }}
|
|
|
|
|
2024-11-16 21:02:30 +00:00
|
|
|
- name: Template .NET (arm64, debug)
|
2024-07-30 12:20:46 +00:00
|
|
|
target: template_debug
|
|
|
|
arch: arm64
|
2024-11-16 21:02:30 +00:00
|
|
|
llvm: true
|
2024-07-30 12:20:46 +00:00
|
|
|
dotnet: true
|
|
|
|
should-build: ${{ !inputs.test-build }}
|
|
|
|
|
2023-12-29 12:10:26 +00:00
|
|
|
exclude:
|
2024-03-10 13:24:56 +00:00
|
|
|
- { opts: { should-build: false } }
|
2023-07-29 09:27:29 +00:00
|
|
|
|
|
|
|
env:
|
2024-11-16 21:02:30 +00:00
|
|
|
BIN: godot.windows.${{matrix.opts.target}}.${{matrix.opts.arch}}${{matrix.opts.llvm && '.llvm' || ''}}${{matrix.opts.dotnet == 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
|
2024-03-10 16:23:59 +00:00
|
|
|
ref: ${{ inputs.godot-ref }}
|
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
|
2024-03-10 16:23:59 +00:00
|
|
|
ref: ${{ inputs.limboai-ref }}
|
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
|
|
|
|
|
2024-11-16 21:02:30 +00:00
|
|
|
- name: Set up Linux toolchain
|
|
|
|
uses: ./modules/limboai/.github/actions/setup-linux-toolchain
|
2023-07-28 18:17:48 +00:00
|
|
|
with:
|
2024-11-16 21:02:30 +00:00
|
|
|
arch: ${{matrix.opts.arch}}
|
2023-07-28 18:17:48 +00:00
|
|
|
|
2024-11-16 21:02:30 +00:00
|
|
|
- name: Set up MinGW
|
|
|
|
uses: ./modules/limboai/.github/actions/setup-mingw-ubuntu
|
|
|
|
with:
|
|
|
|
arch: ${{matrix.opts.arch}}
|
2023-07-28 18:17:48 +00:00
|
|
|
|
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/
|
2024-03-10 16:23:59 +00:00
|
|
|
key: ${{env.BIN}}-${{inputs.godot-ref}}-${{inputs.limboai-ref}}-${{env.LIMBOAI_VERSION}}
|
2024-11-18 00:57:25 +00:00
|
|
|
# restore-keys: |
|
|
|
|
# ${{env.BIN}}-${{inputs.godot-ref}}-${{inputs.limboai-ref}}-${{env.LIMBOAI_VERSION}}
|
|
|
|
# ${{env.BIN}}-${{inputs.godot-ref}}-${{inputs.limboai-ref}}
|
|
|
|
# ${{env.BIN}}-${{inputs.godot-ref}}
|
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: |
|
2024-11-16 21:02:30 +00:00
|
|
|
PATH=${GITHUB_WORKSPACE}/buildroot/bin:$PATH
|
|
|
|
scons platform=windows target=${{matrix.opts.target}} arch=${{matrix.opts.arch}} use_llvm=${{matrix.opts.llvm}} module_mono_enabled=${{matrix.opts.dotnet}} ${{env.SCONSFLAGS}}
|
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
|
2024-08-16 18:20:22 +00:00
|
|
|
echo "${GODOT_VERSION}.limboai+${LIMBOAI_VERSION}${{matrix.opts.dotnet == true && '.mono' || ''}}" > 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
|
2024-03-10 16:23:59 +00:00
|
|
|
uses: actions/upload-artifact@v4
|
2023-07-28 18:17:48 +00:00
|
|
|
with:
|
2024-03-10 16:23:59 +00:00
|
|
|
name: ${{env.NAME_PREFIX}}${{matrix.opts.dotnet == true && '.dotnet' || ''}}.${{matrix.opts.target}}.windows.${{matrix.opts.arch}}
|
2023-08-01 15:31:53 +00:00
|
|
|
path: out/*
|
2024-11-16 21:02:30 +00:00
|
|
|
|
|
|
|
dotnet-assemblies:
|
|
|
|
runs-on: "windows-latest"
|
|
|
|
name: Build .NET assemblies
|
|
|
|
needs: windows-builds
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
opts:
|
|
|
|
- name: Editor .NET (x86_64, release)
|
|
|
|
target: editor
|
|
|
|
arch: x86_64
|
|
|
|
llvm: false
|
|
|
|
dotnet: true
|
|
|
|
should-build: ${{ !inputs.test-build }}
|
|
|
|
|
|
|
|
exclude:
|
|
|
|
- { opts: { should-build: false } }
|
|
|
|
|
|
|
|
env:
|
|
|
|
BIN: godot.windows.${{matrix.opts.target}}.${{matrix.opts.arch}}${{matrix.opts.llvm && '.llvm' || ''}}${{matrix.opts.dotnet == true && '.mono' || ''}}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone Godot
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
repository: godotengine/godot
|
|
|
|
ref: ${{ inputs.godot-ref }}
|
|
|
|
|
|
|
|
- name: Clone LimboAI module
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
path: modules/limboai
|
|
|
|
ref: ${{ inputs.limboai-ref }}
|
|
|
|
|
|
|
|
# Inits GODOT_VERSION, LIMBOAI_VERSION and NAME_PREFIX environment variables.
|
|
|
|
- uses: ./modules/limboai/.github/actions/init-version
|
|
|
|
|
|
|
|
- name: Reconstruct artifact name
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
echo "ARTIFACT=${{env.NAME_PREFIX}}.dotnet.editor.windows.${{matrix.opts.arch}}" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Download editor artifact
|
|
|
|
uses: actions/download-artifact@v4
|
|
|
|
with:
|
|
|
|
name: ${{env.ARTIFACT}}
|
|
|
|
path: bin/
|
|
|
|
|
|
|
|
- name: Build .NET assemblies
|
|
|
|
uses: ./modules/limboai/.github/actions/build-dotnet-assemblies
|
|
|
|
with:
|
|
|
|
platform: windows
|
|
|
|
bin: ${{env.BIN}}
|
|
|
|
|
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: ${{env.ARTIFACT}}
|
|
|
|
overwrite: true
|
|
|
|
path: bin/*
|