85 lines
3.5 KiB
YAML
85 lines
3.5 KiB
YAML
name: Tests
|
|
on: [push, pull_request]
|
|
|
|
env:
|
|
DOTNET_NOLOGO: true
|
|
DOTNET_CLI_TELEMETRY_OPTOUT: false
|
|
|
|
jobs:
|
|
|
|
# Tests on Linux
|
|
tests-linux:
|
|
name: Tests (Linux)
|
|
runs-on: "ubuntu-20.04"
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v3
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v3
|
|
with:
|
|
dotnet-version: 7.0.x
|
|
- name: Print .NET info
|
|
run: |
|
|
dotnet --info
|
|
- name: Checkout LFS
|
|
run: |
|
|
git lfs version
|
|
git lfs pull
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo rm -f /etc/apt/sources.list.d/*
|
|
sudo cp -f .github/workflows/build_linux_sources.list /etc/apt/sources.list
|
|
sudo apt-get update
|
|
sudo apt-get install libx11-dev libxcursor-dev libxinerama-dev build-essential gettext libtool libtool-bin libpulse-dev libasound2-dev libjack-dev portaudio19-dev
|
|
- name: Build
|
|
run: |
|
|
./GenerateProjectFiles.sh -vs2022
|
|
./Development/Scripts/Linux/CallBuildTool.sh -build -log -arch=x64 -platform=Linux -configuration=Development -buildtargets=FlaxTestsTarget
|
|
dotnet msbuild Source/Tools/Flax.Build.Tests/Flax.Build.Tests.csproj /m /t:Restore,Build /p:Configuration=Debug /p:Platform=AnyCPU /nologo
|
|
dotnet msbuild Source/Tools/Flax.Build.Tests/Flax.Build.Tests.csproj /m /t:Restore,Build /p:Configuration=Debug /p:Platform=AnyCPU /nologo
|
|
- name: Test
|
|
run: |
|
|
${GITHUB_WORKSPACE}/Binaries/Editor/Linux/Development/FlaxTests
|
|
dotnet test -f net7.0 Binaries/Tests/Flax.Build.Tests.dll
|
|
cp Binaries/Editor/Linux/Development/FlaxEngine.CSharp.dll Binaries/Tests
|
|
cp Binaries/Editor/Linux/Development/FlaxEngine.CSharp.runtimeconfig.json Binaries/Tests
|
|
cp Binaries/Editor/Linux/Development/Newtonsoft.Json.dll Binaries/Tests
|
|
dotnet test -f net7.0 Binaries/Tests/FlaxEngine.CSharp.dll
|
|
- name: Test UseLargeWorlds
|
|
run: |
|
|
./Development/Scripts/Linux/CallBuildTool.sh -build -log -arch=x64 -platform=Linux -configuration=Development -buildtargets=FlaxTestsTarget -UseLargeWorlds=true
|
|
${GITHUB_WORKSPACE}/Binaries/Editor/Linux/Development/FlaxTests
|
|
|
|
# Tests on Windows
|
|
tests-windows:
|
|
name: Tests (Windows)
|
|
runs-on: "windows-2022"
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v3
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v3
|
|
with:
|
|
dotnet-version: 7.0.x
|
|
- name: Print .NET info
|
|
run: |
|
|
dotnet --info
|
|
- name: Checkout LFS
|
|
run: |
|
|
git lfs version
|
|
git lfs pull
|
|
- name: Build
|
|
run: |
|
|
.\GenerateProjectFiles.bat -vs2022
|
|
.\Development\Scripts\Windows\CallBuildTool.bat -build -log -arch=x64 -platform=Windows -configuration=Development -buildtargets=FlaxTestsTarget
|
|
dotnet msbuild Source\Tools\Flax.Build.Tests\Flax.Build.Tests.csproj /m /t:Restore,Build /p:Configuration=Debug /p:Platform=AnyCPU /nologo
|
|
dotnet msbuild Source\Tools\Flax.Build.Tests\Flax.Build.Tests.csproj /m /t:Restore,Build /p:Configuration=Debug /p:Platform=AnyCPU /nologo
|
|
- name: Test
|
|
run: |
|
|
.\Binaries\Editor\Win64\Development\FlaxTests.exe
|
|
dotnet test -f net7.0 Binaries\Tests\Flax.Build.Tests.dll
|
|
xcopy /y Binaries\Editor\Win64\Development\FlaxEngine.CSharp.dll Binaries\Tests
|
|
xcopy /y Binaries\Editor\Win64\Development\FlaxEngine.CSharp.runtimeconfig.json Binaries\Tests
|
|
xcopy /y Binaries\Editor\Win64\Development\Newtonsoft.Json.dll Binaries\Tests
|
|
dotnet test -f net7.0 Binaries\Tests\FlaxEngine.CSharp.dll
|