|
@@ -5,19 +5,18 @@ on:
|
|
|
# Global Settings
|
|
|
env:
|
|
|
# Used for the cache key. Add version suffix to force clean build.
|
|
|
- GODOT_BASE_BRANCH: '4.0'
|
|
|
+ GODOT_BASE_BRANCH: "4.0"
|
|
|
+ GODOT_CPP_BRANCH: "4.0"
|
|
|
SCONSFLAGS: verbose=yes warnings=extra werror=yes module_text_server_fb_enabled=yes
|
|
|
DOTNET_NOLOGO: true
|
|
|
DOTNET_CLI_TELEMETRY_OPTOUT: true
|
|
|
|
|
|
-concurrency:
|
|
|
- group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-linux
|
|
|
- cancel-in-progress: true
|
|
|
-
|
|
|
jobs:
|
|
|
build-linux:
|
|
|
- runs-on: "ubuntu-20.04"
|
|
|
+ # Stay one LTS before latest to increase portability of Linux artifacts.
|
|
|
+ runs-on: ubuntu-22.04
|
|
|
name: ${{ matrix.name }}
|
|
|
+ timeout-minutes: 120
|
|
|
strategy:
|
|
|
fail-fast: false
|
|
|
matrix:
|
|
@@ -26,24 +25,24 @@ jobs:
|
|
|
cache-name: linux-editor-mono
|
|
|
target: editor
|
|
|
sconsflags: module_mono_enabled=yes
|
|
|
- bin: "./bin/godot.linuxbsd.editor.x86_64.mono"
|
|
|
+ bin: ./bin/godot.linuxbsd.editor.x86_64.mono
|
|
|
build-mono: true
|
|
|
tests: false # Disabled due freeze caused by mix Mono build and CI
|
|
|
doc-test: true
|
|
|
proj-conv: true
|
|
|
artifact: true
|
|
|
+ # Validate godot-cpp compatibility on one arbitrary editor build.
|
|
|
+ godot-cpp: true
|
|
|
|
|
|
- - name: Editor with doubles and GCC sanitizers (target=editor, tests=yes, dev_build=yes, precision=double, use_asan=yes, use_ubsan=yes, linker=gold)
|
|
|
+ - name: Editor with doubles and GCC sanitizers (target=editor, tests=yes, dev_build=yes, scu_build=yes, precision=double, use_asan=yes, use_ubsan=yes, linker=gold)
|
|
|
cache-name: linux-editor-double-sanitizers
|
|
|
target: editor
|
|
|
# Debug symbols disabled as they're huge on this build and we hit the 14 GB limit for runners.
|
|
|
- sconsflags: dev_build=yes debug_symbols=no precision=double use_asan=yes use_ubsan=yes linker=gold
|
|
|
- bin: "./bin/godot.linuxbsd.editor.dev.double.x86_64.san"
|
|
|
+ sconsflags: dev_build=yes scu_build=yes debug_symbols=no precision=double use_asan=yes use_ubsan=yes linker=gold
|
|
|
+ bin: ./bin/godot.linuxbsd.editor.dev.double.x86_64.san
|
|
|
build-mono: false
|
|
|
tests: true
|
|
|
proj-test: true
|
|
|
- # Generate an API dump for godot-cpp tests.
|
|
|
- api-dump: true
|
|
|
# Skip 2GiB artifact speeding up action.
|
|
|
artifact: false
|
|
|
|
|
@@ -51,16 +50,31 @@ jobs:
|
|
|
cache-name: linux-editor-llvm-sanitizers
|
|
|
target: editor
|
|
|
sconsflags: dev_build=yes use_asan=yes use_ubsan=yes use_llvm=yes linker=lld
|
|
|
- bin: "./bin/godot.linuxbsd.editor.dev.x86_64.llvm.san"
|
|
|
+ bin: ./bin/godot.linuxbsd.editor.dev.x86_64.llvm.san
|
|
|
build-mono: false
|
|
|
tests: true
|
|
|
# Skip 2GiB artifact speeding up action.
|
|
|
artifact: false
|
|
|
+ # Test our oldest supported SCons/Python versions on one arbitrary editor build.
|
|
|
+ legacy-scons: true
|
|
|
+
|
|
|
+ # Template builds need various fixes for unit tests to be supported in 4.0,
|
|
|
+ # so we don't enable tests in this legacy branch.
|
|
|
|
|
|
- - name: Template w/ Mono (target=template_release)
|
|
|
+ - name: Template w/ Mono, release (target=template_release)
|
|
|
cache-name: linux-template-mono
|
|
|
target: template_release
|
|
|
sconsflags: module_mono_enabled=yes
|
|
|
+ bin: ./bin/godot.linuxbsd.template_release.x86_64.mono
|
|
|
+ build-mono: false
|
|
|
+ tests: false
|
|
|
+ artifact: true
|
|
|
+
|
|
|
+ - name: Template w/ Mono, debug (target=template_debug)
|
|
|
+ cache-name: linux-template-mono-debug
|
|
|
+ target: template_debug
|
|
|
+ sconsflags: module_mono_enabled=yes
|
|
|
+ bin: ./bin/godot.linuxbsd.template_debug.x86_64.mono
|
|
|
build-mono: false
|
|
|
tests: false
|
|
|
artifact: true
|
|
@@ -69,18 +83,23 @@ jobs:
|
|
|
cache-name: linux-template-minimal
|
|
|
target: template_release
|
|
|
sconsflags: modules_enabled_by_default=no disable_3d=yes disable_advanced_gui=yes deprecated=no minizip=no
|
|
|
+ bin: ./bin/godot.linuxbsd.template_release.x86_64
|
|
|
tests: false
|
|
|
artifact: true
|
|
|
|
|
|
steps:
|
|
|
- - uses: actions/checkout@v3
|
|
|
+ - name: Checkout
|
|
|
+ uses: actions/checkout@v4
|
|
|
+ with:
|
|
|
+ submodules: recursive
|
|
|
|
|
|
# Need newer mesa for lavapipe to work properly.
|
|
|
- name: Linux dependencies for tests
|
|
|
- if: ${{ matrix.proj-test }}
|
|
|
+ if: matrix.proj-test
|
|
|
run: |
|
|
|
sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list
|
|
|
- sudo add-apt-repository ppa:kisak/kisak-mesa
|
|
|
+ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EB8B81E14DA65431D7504EA8F63F0F2B90935439
|
|
|
+ sudo add-apt-repository "deb https://ppa.launchpadcontent.net/kisak/turtle/ubuntu jammy main"
|
|
|
sudo apt-get install -qq mesa-vulkan-drivers
|
|
|
|
|
|
- name: Free disk space on runner
|
|
@@ -89,20 +108,35 @@ jobs:
|
|
|
sudo rm -rf /usr/local/lib/android
|
|
|
echo "Disk usage after:" && df -h
|
|
|
|
|
|
- - name: Setup Godot build cache
|
|
|
- uses: ./.github/actions/godot-cache
|
|
|
+ - name: Restore Godot build cache
|
|
|
+ uses: ./.github/actions/godot-cache-restore
|
|
|
with:
|
|
|
cache-name: ${{ matrix.cache-name }}
|
|
|
continue-on-error: true
|
|
|
|
|
|
- - name: Setup python and scons
|
|
|
+ - name: Setup Python and SCons
|
|
|
+ if: "!matrix.legacy-scons"
|
|
|
uses: ./.github/actions/godot-deps
|
|
|
|
|
|
- - name: Set up .NET Sdk
|
|
|
- uses: actions/setup-dotnet@v2
|
|
|
- if: ${{ matrix.build-mono }}
|
|
|
+ - name: Setup Python and SCons (legacy versions)
|
|
|
+ if: matrix.legacy-scons
|
|
|
+ uses: ./.github/actions/godot-deps
|
|
|
with:
|
|
|
- dotnet-version: '6.0.x'
|
|
|
+ # Sync with Ensure*Version in SConstruct.
|
|
|
+ python-version: 3.8 # No Python < 3.8 available for Ubuntu 22.04.
|
|
|
+ scons-version: 3.1.2
|
|
|
+
|
|
|
+ - name: Force remove preinstalled .NET SDKs
|
|
|
+ if: matrix.build-mono
|
|
|
+ run: |
|
|
|
+ sudo rm -rf /usr/share/dotnet/sdk/*
|
|
|
+
|
|
|
+ - name: Setup older .NET SDK as baseline
|
|
|
+ if: matrix.build-mono
|
|
|
+ uses: actions/setup-dotnet@v4
|
|
|
+ with:
|
|
|
+ # Targeting the oldest version we want to support to ensure it still builds.
|
|
|
+ dotnet-version: 6.0.100
|
|
|
|
|
|
- name: Setup GCC problem matcher
|
|
|
uses: ammaraskar/gcc-problem-matcher@master
|
|
@@ -115,45 +149,53 @@ jobs:
|
|
|
target: ${{ matrix.target }}
|
|
|
tests: ${{ matrix.tests }}
|
|
|
|
|
|
+ - name: Compilation (godot-cpp)
|
|
|
+ uses: ./.github/actions/godot-cpp-build
|
|
|
+ if: matrix.godot-cpp
|
|
|
+ with:
|
|
|
+ bin: ${{ matrix.bin }}
|
|
|
+ scons-flags: target=template_debug dev_build=yes verbose=yes
|
|
|
+ godot-cpp-branch: ${{ env.GODOT_CPP_BRANCH }}
|
|
|
+
|
|
|
+ - name: Save Godot build cache
|
|
|
+ uses: ./.github/actions/godot-cache-save
|
|
|
+ with:
|
|
|
+ cache-name: ${{ matrix.cache-name }}
|
|
|
+ continue-on-error: true
|
|
|
+
|
|
|
- name: Generate C# glue
|
|
|
- if: ${{ matrix.build-mono }}
|
|
|
+ if: matrix.build-mono
|
|
|
run: |
|
|
|
- ${{ matrix.bin }} --headless --generate-mono-glue ./modules/mono/glue || true
|
|
|
+ ${{ matrix.bin }} --headless --generate-mono-glue ./modules/mono/glue
|
|
|
|
|
|
- name: Build .NET solutions
|
|
|
- if: ${{ matrix.build-mono }}
|
|
|
+ if: matrix.build-mono
|
|
|
run: |
|
|
|
+ dotnet --info
|
|
|
./modules/mono/build_scripts/build_assemblies.py --godot-output-dir=./bin --godot-platform=linuxbsd
|
|
|
|
|
|
- name: Prepare artifact
|
|
|
- if: ${{ matrix.artifact }}
|
|
|
+ if: matrix.artifact
|
|
|
run: |
|
|
|
strip bin/godot.*
|
|
|
chmod +x bin/godot.*
|
|
|
|
|
|
- name: Upload artifact
|
|
|
uses: ./.github/actions/upload-artifact
|
|
|
- if: ${{ matrix.artifact }}
|
|
|
+ if: matrix.artifact
|
|
|
with:
|
|
|
name: ${{ matrix.cache-name }}
|
|
|
|
|
|
- - name: Dump Godot API
|
|
|
- uses: ./.github/actions/godot-api-dump
|
|
|
- if: ${{ matrix.api-dump }}
|
|
|
- with:
|
|
|
- bin: ${{ matrix.bin }}
|
|
|
-
|
|
|
- # Execute unit tests for the editor
|
|
|
- name: Unit tests
|
|
|
- if: ${{ matrix.tests }}
|
|
|
+ if: matrix.tests
|
|
|
run: |
|
|
|
${{ matrix.bin }} --version
|
|
|
${{ matrix.bin }} --help
|
|
|
- ${{ matrix.bin }} --test --headless
|
|
|
+ ${{ matrix.bin }} --headless --test
|
|
|
|
|
|
# Check class reference
|
|
|
- name: Check for class reference updates
|
|
|
- if: ${{ matrix.doc-test }}
|
|
|
+ if: matrix.doc-test
|
|
|
run: |
|
|
|
echo "Running --doctool to see if this changes the public API without updating the documentation."
|
|
|
echo -e "If a diff is shown, it means that your code/doc changes are incomplete and you should update the class reference with --doctool.\n\n"
|
|
@@ -163,13 +205,13 @@ jobs:
|
|
|
# Download and run the test project
|
|
|
- name: Test Godot project
|
|
|
uses: ./.github/actions/godot-project-test
|
|
|
- if: ${{ matrix.proj-test }}
|
|
|
+ if: matrix.proj-test
|
|
|
with:
|
|
|
bin: ${{ matrix.bin }}
|
|
|
|
|
|
# Test the project converter
|
|
|
- name: Test project converter
|
|
|
uses: ./.github/actions/godot-converter-test
|
|
|
- if: ${{ matrix.proj-conv }}
|
|
|
+ if: matrix.proj-conv
|
|
|
with:
|
|
|
bin: ${{ matrix.bin }}
|