Skip to content

In house tool code update #80

In house tool code update

In house tool code update #80

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