limboai/.github/workflows/test_builds.yml

151 lines
3.8 KiB
YAML
Raw Normal View History

name: 🔎 Test builds
2023-08-28 17:32:15 +00:00
on:
workflow_dispatch:
push:
2024-02-14 20:25:20 +00:00
branches: [master]
paths-ignore:
- "README.md"
2024-02-14 20:25:20 +00:00
- "LICENSE.md"
- "**/*.png"
2024-01-19 16:05:01 +00:00
- "demo/**"
- "doc/**"
pull_request:
2024-02-14 20:25:20 +00:00
branches: [master]
paths-ignore:
- "README.md"
2024-02-14 20:25:20 +00:00
- "LICENSE.md"
- "**/*.png"
2024-01-19 16:05:01 +00:00
- "demo/**"
- "doc/**"
2024-01-13 18:25:38 +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-06-29 14:53:30 +00:00
GODOT_REF: "master"
GODOT_CPP_REF: "master"
2023-08-28 17:32:15 +00:00
jobs:
unit-tests:
name: 🧪 Unit tests
2023-08-28 17:32:15 +00:00
runs-on: "ubuntu-20.04"
# Settings
2023-08-28 17:32:15 +00:00
env:
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
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
- name: Set up Linux toolchain
uses: ./modules/limboai/.github/actions/setup-linux-toolchain
with:
arch: x86_64
2023-08-28 17:32:15 +00:00
- name: Set up scons cache
uses: actions/cache@v4
2023-08-28 17:32:15 +00:00
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}}
continue-on-error: true
2023-08-28 17:32:15 +00:00
- name: Set up Python 3.x
uses: actions/setup-python@v5
2023-08-28 17:32:15 +00:00
with:
2024-02-14 20:25:20 +00:00
python-version: "3.x"
architecture: "x64"
2023-08-28 17:32:15 +00:00
- name: Set up scons
run: |
python -c "import sys; print(sys.version)"
python -m pip install scons==4.4.0
python --version
scons --version
- 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: |
PATH=${GITHUB_WORKSPACE}/buildroot/bin:$PATH
scons ${{env.SCONSFLAGS}}
2023-08-28 17:32:15 +00:00
- name: Verify build
run: |
ls -l bin/
bin/${{ env.BIN }} --version
bin/${{ env.BIN }} --help
2023-08-28 17:32:15 +00:00
- name: Unit tests
2023-08-28 17:32:15 +00:00
run: |
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"
linux-test-build:
name: 🐧 Linux
2024-01-13 18:25:38 +00:00
needs: cache-env
uses: ./.github/workflows/linux.yml
with:
godot-ref: ${{ needs.cache-env.outputs.godot-ref }}
limboai-ref: ${{ github.sha }}
test-build: true
windows-test-build:
name: 🪟 Windows
2024-01-13 18:25:38 +00:00
needs: cache-env
uses: ./.github/workflows/windows.yml
with:
godot-ref: ${{ needs.cache-env.outputs.godot-ref }}
limboai-ref: ${{ github.sha }}
test-build: true
macos-test-build:
name: 🍎 macOS
2024-01-13 18:25:38 +00:00
needs: cache-env
uses: ./.github/workflows/macos.yml
with:
godot-ref: ${{ needs.cache-env.outputs.godot-ref }}
limboai-ref: ${{ github.sha }}
test-build: true
gdextension:
name: 🔌 GDExtension
2024-01-13 18:25:38 +00:00
needs: cache-env
uses: ./.github/workflows/gdextension.yml
with:
godot-cpp-ref: ${{ needs.cache-env.outputs.godot-cpp-ref }}
limboai-ref: ${{ github.sha }}
test-build: true