mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-04 20:05:02 +08:00
31 lines
881 B
YAML
31 lines
881 B
YAML
version: 0.1.{build}
|
|
|
|
os: Windows Server 2012 R2
|
|
|
|
platform: x64
|
|
|
|
environment:
|
|
matrix:
|
|
- TOOLCHAIN: "cygwin"
|
|
|
|
branches:
|
|
only:
|
|
- dev
|
|
- master
|
|
|
|
clone_folder: c:\projects\mdbtools
|
|
|
|
skip_tags: true
|
|
|
|
# Installing packages leads to the error:
|
|
# Can't locate threads.pm in @INC (you may need to install the threads module)
|
|
# So disable the SQL tests on this platform for now
|
|
build_script:
|
|
- C:\cygwin64\bin\sh -lc "cd /cygdrive/c/projects/mdbtools && git clone https://github.com/mdbtools/mdbtestdata.git test"
|
|
- C:\cygwin64\bin\sh -lc "cd /cygdrive/c/projects/mdbtools && autoreconf -i -f"
|
|
- C:\cygwin64\bin\sh -lc "cd /cygdrive/c/projects/mdbtools && ./configure --disable-man --disable-silent-rules"
|
|
- C:\cygwin64\bin\sh -lc "cd /cygdrive/c/projects/mdbtools && make"
|
|
|
|
test_script:
|
|
- C:\cygwin64\bin\sh -lc "cd /cygdrive/c/projects/mdbtools && ./test_script.sh"
|