.drone.yml 432 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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
16
17
    - pacman -S --needed --noconfirm --noprogressbar mingw-w64-${TARGET}-libusb unzip
    - make && make misc && make -C tests/ check_all_fex