simple syslog receiver #83
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows MSYS2 | |
on: [push] | |
jobs: | |
msys2-ucrt64: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: UCRT64 | |
update: true | |
install: git mingw-w64-ucrt-x86_64-libgcrypt mingw-w64-ucrt-x86_64-gcc make cmake | |
- name: CI-Build | |
run: | | |
echo 'Running in MSYS2' | |
cmake -B build -DCMAKE_TOOLCHAIN_FILE=mingw64-github-ci.cmake | |
make -C build |