diff options
author | bloodstalker <thabogre@gmail.com> | 2019-11-29 12:57:12 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2019-11-29 12:57:12 +0000 |
commit | c3aa78addf98c0d33dc69fc32d4f97aca4b371f1 (patch) | |
tree | 4fbf29a92d89112ff6f9ab3d50ad75f8626d1c3c | |
parent | added libwasm32 as a lua module to bruiser now. you can get a quick wasm dump... (diff) | |
download | mutator-c3aa78addf98c0d33dc69fc32d4f97aca4b371f1.tar.gz mutator-c3aa78addf98c0d33dc69fc32d4f97aca4b371f1.zip |
fixing the windows cygwin build for obfuscator on appveyor [travis skip]
-rw-r--r-- | appveyor.yml | 18 |
1 files changed, 18 insertions, 0 deletions
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"' |