From c3aa78addf98c0d33dc69fc32d4f97aca4b371f1 Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Fri, 29 Nov 2019 16:27:12 +0330 Subject: fixing the windows cygwin build for obfuscator on appveyor [travis skip] --- appveyor.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..d55012d --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,18 @@ + +environment: + global: + CYG_MIRROR: http://mirrors.kernel.org/sourceware/cygwin + CYG_ROOT: C:\cygwin64 + CYG_SETUP: setup-x86_64.exe + CYG_CACHE: '%CYG_ROOT%\var\cache\setup' + CYG_BASH: '%CYG_ROOT%\bin\bash' + +install: + - '%CYG_ROOT%\%CYG_SETUP% -qI -R "%CYG_ROOT%" -s "%CYG_MIRROR%" -P make,libclang-devel,libllvm-devel,clang,libiconv-devel' + - '%CYG_ROOT%\bin\cygcheck -dc cygwin' + - 'cd %APPVEYOR_BUILD_FOLDER%' + - 'git submodule init' + - 'git submodule update' + +build_script: + - '%CYG_ROOT%\bin\bash -lc "make -C $APPVEYOR_BUILD_FOLDER obfuscator"' -- cgit v1.2.3