Commit eaa241a7 authored by Bernhard Nortmann's avatar Bernhard Nortmann
Browse files

teaci: Enable Windows build test using Tea CI

This commit adds a build configuration for https://www.tea-ci.org


that tests MSYS2-based Windows builds, for both "mingw32" and
"mingw64" toolchains.
Signed-off-by: default avatarBernhard Nortmann <bernhard.nortmann@web.de>
parent 7128c73a
# Build configuration for Tea CI, https://www.tea-ci.org
matrix:
BITS:
- 32
- 64
build:
image: teaci/msys$$BITS
shell: mingw$$BITS
environment:
- CFLAGS=-g -O2
commands:
- if [ $$BITS = 32 ]; then TARGET=i686; fi
- if [ $$BITS = 64 ]; then TARGET=x86_64; fi
- pacman -S --needed --noconfirm --noprogressbar mingw-w64-${TARGET}-libusb
- make && make misc
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment