Skip to content

Adding more string funcs to string utils. #31

Adding more string funcs to string utils.

Adding more string funcs to string utils. #31

name: windows-mingw-build
on:
push:
branches: [ main ]
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: run build
shell: msys2 {0}
run: |
(echo ""; echo "y") | pacman -S mingw-w64-x86_64-toolchain
echo "y" | pacman -S mingw-w64-x86_64-cmake
echo "y" | pacman -S mingw-w64-x86_64-SDL2
echo "y" | pacman -S mingw-w64-x86_64-freetype
cmake -G "MinGW Makefiles" . -DIS_CI_BUILD="true"
cmake --build .