2023-09-15 08:49:33 +00:00
|
|
|
name: 🔎 Test builds
|
2023-08-28 17:32:15 +00:00
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
2023-09-13 08:25:18 +00:00
|
|
|
|
|
|
|
push:
|
2023-09-13 09:10:58 +00:00
|
|
|
branches: [ master ]
|
2023-09-13 08:25:18 +00:00
|
|
|
paths-ignore:
|
|
|
|
- "README.md"
|
|
|
|
- "LICENSE"
|
|
|
|
- "**/*.png"
|
2024-01-19 16:05:01 +00:00
|
|
|
- "demo/**"
|
|
|
|
- "doc/**"
|
2023-09-13 08:25:18 +00:00
|
|
|
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
paths-ignore:
|
|
|
|
- "README.md"
|
|
|
|
- "LICENSE"
|
|
|
|
- "**/*.png"
|
2024-01-19 16:05:01 +00:00
|
|
|
- "demo/**"
|
|
|
|
- "doc/**"
|
2024-01-13 18:25:38 +00:00
|
|
|
|
2024-01-14 16:43:06 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2024-01-13 18:25:38 +00:00
|
|
|
# Global Settings.
|
|
|
|
env:
|
2024-01-19 13:01:02 +00:00
|
|
|
GODOT_REF: "4.2"
|
2024-01-13 18:25:38 +00:00
|
|
|
GODOT_CPP_REF: "4.2"
|
2023-08-28 17:32:15 +00:00
|
|
|
|
|
|
|
jobs:
|
2023-12-29 13:40:10 +00:00
|
|
|
unit-tests:
|
|
|
|
name: 🧪 Unit tests
|
2023-08-28 17:32:15 +00:00
|
|
|
runs-on: "ubuntu-20.04"
|
|
|
|
|
2023-12-29 13:40:10 +00:00
|
|
|
# Settings
|
2023-08-28 17:32:15 +00:00
|
|
|
env:
|
2023-12-29 13:40:10 +00:00
|
|
|
SCONSFLAGS: platform=linuxbsd target=editor arch=x86_64 production=false dev_build=true tests=true verbose=yes warnings=extra werror=yes
|
|
|
|
SCONS_CACHE_LIMIT: 7168
|
2023-12-29 14:16:26 +00:00
|
|
|
BIN: godot.linuxbsd.editor.dev.x86_64
|
2023-08-28 17:32:15 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone Godot
|
2023-11-09 14:07:29 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-08-28 17:32:15 +00:00
|
|
|
with:
|
|
|
|
repository: godotengine/godot
|
2024-01-13 18:25:38 +00:00
|
|
|
ref: ${{ env.GODOT_REF }}
|
2023-08-28 17:32:15 +00:00
|
|
|
|
|
|
|
- name: Clone LimboAI module
|
2023-11-09 14:07:29 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-08-28 17:32:15 +00:00
|
|
|
with:
|
|
|
|
path: modules/limboai
|
|
|
|
|
|
|
|
# About sed see: https://github.com/godotengine/buildroot/issues/6
|
|
|
|
- name: Set up buildroot 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
|
|
|
|
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 ..
|
|
|
|
|
|
|
|
- name: Set up scons cache
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: ${{github.workspace}}/.scons_cache/
|
2024-01-13 18:25:38 +00:00
|
|
|
key: ${{env.BIN}}-${{env.GODOT_REF}}-${{github.ref}}-${{github.sha}}
|
2023-08-28 17:32:15 +00:00
|
|
|
restore-keys: |
|
2024-01-13 18:25:38 +00:00
|
|
|
${{env.BIN}}-${{env.GODOT_REF}}-${{github.ref}}-${{github.sha}}
|
|
|
|
${{env.BIN}}-${{env.GODOT_REF}}-${{github.ref}}
|
|
|
|
${{env.BIN}}-${{env.GODOT_REF}}
|
2023-09-13 10:24:44 +00:00
|
|
|
continue-on-error: true
|
2023-08-28 17:32:15 +00:00
|
|
|
|
|
|
|
- name: Set up Python 3.x
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: '3.x'
|
|
|
|
architecture: 'x64'
|
|
|
|
|
|
|
|
- name: Set up scons
|
|
|
|
run: |
|
|
|
|
python -c "import sys; print(sys.version)"
|
|
|
|
python -m pip install scons==4.4.0
|
|
|
|
python --version
|
|
|
|
scons --version
|
|
|
|
|
2023-09-15 08:49:33 +00:00
|
|
|
- name: Setup GCC problem matcher
|
|
|
|
uses: ammaraskar/gcc-problem-matcher@master
|
2023-08-28 17:32:15 +00:00
|
|
|
|
|
|
|
- name: Compilation
|
|
|
|
env:
|
|
|
|
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
|
|
|
|
run: |
|
2023-09-15 08:49:33 +00:00
|
|
|
PATH=${GITHUB_WORKSPACE}/buildroot/bin:$PATH
|
2023-12-29 14:16:26 +00:00
|
|
|
scons ${{env.SCONSFLAGS}}
|
2023-08-28 17:32:15 +00:00
|
|
|
|
2023-12-29 13:40:10 +00:00
|
|
|
- name: Verify build
|
2023-09-15 08:49:33 +00:00
|
|
|
run: |
|
2023-12-29 14:16:26 +00:00
|
|
|
ls -l bin/
|
2023-09-15 08:49:33 +00:00
|
|
|
bin/${{ env.BIN }} --version
|
|
|
|
bin/${{ env.BIN }} --help
|
2023-08-28 17:32:15 +00:00
|
|
|
|
2023-12-29 13:40:10 +00:00
|
|
|
- name: Unit tests
|
2023-08-28 17:32:15 +00:00
|
|
|
run: |
|
2023-12-29 13:40:10 +00:00
|
|
|
bin/${{ env.BIN }} --test --headless
|
2023-08-28 17:32:15 +00:00
|
|
|
|
2024-01-13 18:25:38 +00:00
|
|
|
cache-env:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
godot-ref: ${{ steps.cache-env.outputs.godot-ref }}
|
|
|
|
godot-cpp-ref: ${{ steps.cache-env.outputs.godot-cpp-ref }}
|
|
|
|
steps:
|
|
|
|
- name: Cache env
|
|
|
|
id: cache-env
|
|
|
|
run: |
|
|
|
|
echo "godot-ref=${GODOT_REF}" >> "$GITHUB_OUTPUT"
|
|
|
|
echo "godot-cpp-ref=${GODOT_CPP_REF}" >> "$GITHUB_OUTPUT"
|
|
|
|
|
2023-12-29 13:40:10 +00:00
|
|
|
linux-test-build:
|
2024-01-11 19:16:00 +00:00
|
|
|
name: 🐧 Linux
|
2024-01-13 18:25:38 +00:00
|
|
|
needs: cache-env
|
2023-12-29 13:40:10 +00:00
|
|
|
uses: ./.github/workflows/linux.yml
|
|
|
|
with:
|
2024-01-13 18:25:38 +00:00
|
|
|
godot-treeish: ${{ needs.cache-env.outputs.godot-ref }}
|
2023-12-29 13:40:10 +00:00
|
|
|
limboai-treeish: ${{ github.sha }}
|
|
|
|
test-build: true
|
2023-12-29 12:10:26 +00:00
|
|
|
|
|
|
|
windows-test-build:
|
2024-01-11 19:16:00 +00:00
|
|
|
name: 🪟 Windows
|
2024-01-13 18:25:38 +00:00
|
|
|
needs: cache-env
|
2023-12-29 12:10:26 +00:00
|
|
|
uses: ./.github/workflows/windows.yml
|
|
|
|
with:
|
2024-01-13 18:25:38 +00:00
|
|
|
godot-treeish: ${{ needs.cache-env.outputs.godot-ref }}
|
2023-12-29 12:10:26 +00:00
|
|
|
limboai-treeish: ${{ github.sha }}
|
|
|
|
test-build: true
|
2023-12-29 13:58:45 +00:00
|
|
|
|
2023-12-29 14:16:26 +00:00
|
|
|
macos-test-build:
|
2024-01-11 19:16:00 +00:00
|
|
|
name: 🍎 macOS
|
2024-01-13 18:25:38 +00:00
|
|
|
needs: cache-env
|
2023-12-29 13:58:45 +00:00
|
|
|
uses: ./.github/workflows/macos.yml
|
|
|
|
with:
|
2024-01-13 18:25:38 +00:00
|
|
|
godot-treeish: ${{ needs.cache-env.outputs.godot-ref }}
|
2023-12-29 13:58:45 +00:00
|
|
|
limboai-treeish: ${{ github.sha }}
|
|
|
|
test-build: true
|
2024-01-11 16:06:06 +00:00
|
|
|
|
|
|
|
gdextension:
|
2024-01-11 19:16:00 +00:00
|
|
|
name: 🔌 GDExtension
|
2024-01-13 18:25:38 +00:00
|
|
|
needs: cache-env
|
2024-01-11 19:16:00 +00:00
|
|
|
uses: ./.github/workflows/gdextension.yml
|
2024-01-11 16:06:06 +00:00
|
|
|
with:
|
2024-01-13 18:25:38 +00:00
|
|
|
godot-cpp-treeish: ${{ needs.cache-env.outputs.godot-cpp-ref }}
|
2024-01-11 16:06:06 +00:00
|
|
|
limboai-treeish: ${{ github.sha }}
|
2024-01-11 19:16:00 +00:00
|
|
|
test-build: true
|