From a23852bbcd1427258cd787d754cfa75b9fd89240 Mon Sep 17 00:00:00 2001 From: Vlasta Vesely Date: Fri, 26 Feb 2021 11:23:24 +0100 Subject: [PATCH] add configuration for AppVeyor CI --- .appveyor.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 0000000..d941a83 --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,16 @@ +version: '{branch}-{build}' + +platform: x64 + +environment: + CYG_ROOT: C:\cygwin64 + CYG_SHELL: C:\cygwin64\bin\sh + +install: + - cmd: '%CYG_ROOT%\setup-x86_64.exe --quiet-mode --no-shortcuts --upgrade-also --packages autoconf,make,git,gcc,check' + +build_script: + - cmd: '%CYG_SHELL% -lc "cd $APPVEYOR_BUILD_FOLDER && sh autogen.sh && sh configure && make all"' + +test_script: + - cmd: '%CYG_SHELL% -lc "cd $APPVEYOR_BUILD_FOLDER && make test"'