From: Alexander Köplinger Date: Mon, 26 Sep 2016 13:45:03 +0000 (+0200) Subject: Remove appveyor.yml from repository X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=7fd68f813d39909690a63ca81a676331fc8adca9;p=mono.git Remove appveyor.yml from repository We now have our own set of Windows bots on our Jenkins CI for building and testing Mono on Windows. Special thanks to AppVeyor for providing us with build capacity over the last two years <3 --- diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 8fa713a07ef..00000000000 --- a/appveyor.yml +++ /dev/null @@ -1,79 +0,0 @@ -# -# Appveyor configuration file for CI build of Mono on Windows (under Cygwin) -# -# For further details see http://www.appveyor.com -# - -# -# Custom environment variables -# -environment: - global: - CYG_ROOT: C:\cygwin - CYG_MIRROR: http://cygwin.mirror.constant.com - CYG_CACHE: C:\cygwin\var\cache\setup - CYG_BASH: C:\cygwin\bin\bash - -# -# Cache Cygwin files to speed up build -# -cache: - - '%CYG_CACHE%' - -# -# Do a shallow clone of the repo to speed up build -# -clone_depth: 1 - -# -# Initialisation prior to pulling the Mono repository -# Attempt to ensure we don't try to convert line endings to Win32 CRLF as this will cause build to fail -# -init: - - git config --global core.autocrlf input - -# -# Install needed build dependencies -# -install: - - ps: 'Start-FileDownload "http://cygwin.com/setup-x86.exe" -FileName "setup-x86.exe"' - - 'setup-x86.exe --quiet-mode --no-shortcuts --only-site --root "%CYG_ROOT%" --site "%CYG_MIRROR%" --local-package-dir "%CYG_CACHE%" --packages autoconf,automake,bison,gcc-core,gcc-g++,mingw-runtime,mingw-binutils,mingw-gcc-core,mingw-gcc-g++,mingw-pthreads,mingw-w32api,libtool,make,python,gettext-devel,gettext,intltool,libiconv,pkg-config,git,curl,libxslt > NUL 2>&1' - - '%CYG_BASH% -lc "cygcheck -dc cygwin"' - -# Cygwin build script -# -# NOTES: -# -# The stdin/stdout file descriptor appears not to be valid for the Appveyor -# build which causes failures as certain functions attempt to redirect -# default file handles. Ensure a dummy file descriptor is opened with 'exec'. -# -build_script: - - 'echo Building...' - - '%CYG_BASH% -lc "cd $APPVEYOR_BUILD_FOLDER; exec 0