limboai/.github/workflows/linux.yml

198 lines
6.4 KiB
YAML
Raw Normal View History

name: 🐧 Linux 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
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-29 09:27:29 +00:00
# Global Settings
env:
SCONS_CACHE_LIMIT: 4096
SCONSFLAGS: production=yes tests=no verbose=yes warnings=extra werror=yes
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
2023-07-28 18:17:48 +00:00
linux-builds:
runs-on: "ubuntu-20.04"
name: ${{ matrix.name }}
strategy:
fail-fast: false
matrix:
include:
2023-07-29 21:29:21 +00:00
- name: Editor (x86_64, release)
target: editor
2023-07-28 17:17:40 +00:00
arch: x86_64
build-mono: false
2023-07-29 21:29:21 +00:00
- name: Template (x86_64, release)
2023-07-28 14:33:21 +00:00
target: template_release
2023-07-28 17:17:40 +00:00
arch: x86_64
2023-07-28 14:33:21 +00:00
build-mono: false
2023-07-29 21:29:21 +00:00
- name: Template (x86_64, debug)
2023-07-28 14:33:21 +00:00
target: template_debug
2023-07-28 17:17:40 +00:00
arch: x86_64
2023-07-29 09:27:29 +00:00
build-mono: false
2023-07-28 14:33:21 +00:00
2023-07-29 21:29:21 +00:00
# - name: Editor (x86_32, release)
2023-07-28 17:17:40 +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 17:17:40 +00:00
target: template_release
arch: x86_32
2023-07-29 09:27:29 +00:00
build-mono: false
2023-07-28 17:17:40 +00:00
2023-07-29 21:29:21 +00:00
- name: Template (x86_32, debug)
2023-07-28 17:17:40 +00:00
target: template_debug
arch: x86_32
2023-07-29 09:27:29 +00:00
build-mono: false
2023-07-28 17:17:40 +00:00
2023-07-29 21:29:21 +00:00
- name: Editor .NET (x86_64, release)
2023-07-28 16:51:56 +00:00
target: editor
2023-07-28 17:17:40 +00:00
arch: x86_64
2023-07-28 16:51:56 +00:00
build-mono: true
2023-07-28 14:33:21 +00:00
2023-07-29 21:29:21 +00:00
- name: Template .NET (x86_64, release)
2023-07-28 16:51:56 +00:00
target: template_release
2023-07-28 17:17:40 +00:00
arch: x86_64
2023-07-28 16:51:56 +00:00
build-mono: true
2023-07-29 21:29:21 +00:00
- name: Template .NET (x86_64, debug)
2023-07-28 16:51:56 +00:00
target: template_debug
2023-07-28 17:17:40 +00:00
arch: x86_64
2023-07-28 16:51:56 +00:00
build-mono: true
2023-07-28 14:33:21 +00:00
2023-07-29 21:29:21 +00:00
# - name: Editor .NET (x86_32, release)
2023-07-28 17:17:40 +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 17:17:40 +00:00
target: template_release
arch: x86_32
build-mono: true
2023-07-29 21:29:21 +00:00
- name: Template .NET (x86_32, debug)
2023-07-28 17:17:40 +00:00
target: template_debug
arch: x86_32
build-mono: true
2023-07-29 09:27:29 +00:00
env:
BIN: godot.linuxbsd.${{matrix.target}}.${{matrix.arch}}${{ matrix.build-mono == true && '.mono' || '' }}
2023-07-28 14:33:21 +00:00
steps:
2023-08-01 08:25:13 +00:00
- name: Clone Godot
uses: actions/checkout@v3
with:
repository: godotengine/godot
ref: ${{ inputs.godot-treeish }}
2023-08-01 08:25:13 +00:00
- name: Clone LimboAI module
uses: actions/checkout@v3
with:
path: modules/limboai
ref: ${{ inputs.limboai-treeish }}
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
# About sed see: https://github.com/godotengine/buildroot/issues/6
2023-08-01 08:25:13 +00:00
- name: Set up buildroot x86_64
2023-07-28 18:17:48 +00:00
if: matrix.arch == 'x86_64'
run: |
wget https://download.tuxfamily.org/godotengine/toolchains/linux/x86_64-godot-linux-gnu_sdk-buildroot.tar.bz2
tar -xjf x86_64-godot-linux-gnu_sdk-buildroot.tar.bz2
2023-07-28 18:17:48 +00:00
mv x86_64-godot-linux-gnu_sdk-buildroot buildroot
cd buildroot
sed -i x86_64-godot-linux-gnu/sysroot/usr/lib/pkgconfig/dbus-1.pc -e "s@/lib@/lib64@g"
./relocate-sdk.sh
cd ..
2023-08-01 08:25:13 +00:00
- name: Set up buildroot x86_32
2023-07-28 18:17:48 +00:00
if: matrix.arch == 'x86_32'
run: |
wget https://download.tuxfamily.org/godotengine/toolchains/linux/i686-godot-linux-gnu_sdk-buildroot.tar.bz2
tar -xjf i686-godot-linux-gnu_sdk-buildroot.tar.bz2
mv i686-godot-linux-gnu_sdk-buildroot buildroot
cd buildroot
./relocate-sdk.sh
cd ..
- name: Set up scons cache
2023-07-31 20:45:24 +00:00
uses: actions/cache@v3
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 16:51:56 +00:00
- name: Compilation
env:
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
run: |
2023-07-28 18:17:48 +00:00
PATH=${GITHUB_WORKSPACE}/buildroot/bin:$PATH
2023-08-01 08:25:13 +00:00
scons platform=linuxbsd target=${{matrix.target}} arch=${{matrix.arch}} module_mono_enabled=${{matrix.build-mono}} ${{env.SCONSFLAGS}}
2023-07-28 16:51:56 +00:00
- name: Generate C# glue
2023-07-28 18:17:48 +00:00
if: matrix.build-mono && matrix.target == 'editor'
env:
GODOT_VERSION_STATUS: limboai
2023-07-28 16:51:56 +00:00
run: |
2023-07-29 09:27:29 +00:00
./bin/$BIN --headless --generate-mono-glue ./modules/mono/glue || true
2023-07-28 16:51:56 +00:00
- name: Build .NET solutions
2023-07-28 18:17:48 +00:00
if: matrix.build-mono && matrix.target == 'editor'
env:
GODOT_VERSION_STATUS: limboai
2023-07-28 16:51:56 +00:00
run: |
./modules/mono/build_scripts/build_assemblies.py --godot-output-dir=./bin --godot-platform=linuxbsd
2023-07-28 18:17:48 +00:00
- name: Prepare artifact
env:
OUTDIR: ${{ startsWith(matrix.target, 'template') && 'out/templates' || 'out/' }}
2023-07-28 18:17:48 +00:00
run: |
strip ./bin/godot.*
chmod +x ./bin/godot.*
mkdir -p ${{env.OUTDIR}}
mv bin/* ${{env.OUTDIR}}
ls -R out/
- name: Rename templates
if: startsWith(matrix.target, 'template')
env:
BUILD_TYPE: ${{ endsWith(matrix.target, 'release') && 'release' || 'debug' }}
run: |
mv out/templates/${BIN} out/templates/linux_${BUILD_TYPE}.${{matrix.arch}}
ls -R out/
2023-07-28 18:17:48 +00:00
- name: Upload artifact
uses: actions/upload-artifact@v3
env:
NAME_EDITOR: ${{env.NAME_PREFIX}}.${{matrix.target}}.linux.${{matrix.arch}}${{ matrix.build-mono == true && '.mono' || '' }}
2023-08-02 07:54:29 +00:00
NAME_TEMPLATES: ${{env.NAME_PREFIX}}.export-templates${{ matrix.build-mono == true && '.mono' || '' }}
with:
name: ${{ startsWith(matrix.target, 'template') && env.NAME_TEMPLATES || env.NAME_EDITOR }}
path: out/*