Skip to content

Small changes to tilemap editor #498

Small changes to tilemap editor

Small changes to tilemap editor #498

name: windows-mingw-build
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- uses: msys2/setup-msys2@v2
with:
install: gcc make
- name: get cmake
uses: lukka/get-cmake@latest
with:
useLocalCache: true
useCloudCache: false
cmakeVersion: "3.27.0"
- name: run build
run: |
cd ${{ github.workspace }}
mkdir -p builds
cmake -S . -G "MinGW Makefiles" -B builds -DIS_CI_BUILD="true"
cmake --build builds
- name: run unit tests
run: |
echo "Running crescent engine tests!"
${{ github.workspace }}/builds/crescent_engine_test.exe
echo ""
echo "Running crescent engine editor tests!"
${{ github.workspace }}/builds/crescent_engine_editor_test.exe