Skip to content

Merge branch 'chaos' of https://github.com/Frogman-Engine/Frogman-Eng… #3

Merge branch 'chaos' of https://github.com/Frogman-Engine/Frogman-Eng…

Merge branch 'chaos' of https://github.com/Frogman-Engine/Frogman-Eng… #3

Workflow file for this run

name: Frogman-Engine-CI.yml
on:
push:
branches:
- release
- chaos
jobs:
build:
runs-on: windows-latest
strategy:
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable.
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Build and run debug version of Google Benchmarks and Tests.
run: |
cd SDK/Tests/Unit-Tests
chmod +x build.bat
./build.bat
chmod +x Test-App/Debug/FE_UNIT_TEST.exe
./Test-App/Debug/FE_UNIT_TEST.exe
chmod +x Test-App/Release/FE_UNIT_TEST.exe
./Test-App/Release/FE_UNIT_TEST.exe
chmod +x Test-App/MinSizeRel/FE_UNIT_TEST.exe
./Test-App/MinSizeRel/FE_UNIT_TEST.exe
chmod +x Test-App/RelWithDeb/FE_UNIT_TEST.exe
./Test-App/RelWithDeb/FE_UNIT_TEST.exe