From a433ce475f61d55f36b75bff78ce9277a8d193b7 Mon Sep 17 00:00:00 2001 From: davvd Date: Sat, 24 Sep 2022 08:17:31 +0300 Subject: [PATCH] appveyor config removed --- appveyor.yml | 50 -------------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100755 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100755 index 1bddf790a..000000000 --- a/appveyor.yml +++ /dev/null @@ -1,50 +0,0 @@ -version: '{build}' -skip_tags: true -clone_depth: 10 -branches: - only: - - master - except: - - gh-pages -os: Windows Server 2012 -environment: - matrix: - - ruby_version: "25-x64" -install: - - ps: | - $Env:PATH = "C:\Ruby${Env:ruby_version}\bin;${Env:PATH}" - if ($Env:ruby_version -match "^23" ) { - # RubyInstaller; download OpenSSL headers from OpenKnapsack Project - $Env:openssl_dir = "C:\Ruby${Env:ruby_version}" - appveyor DownloadFile http://dl.bintray.com/oneclick/OpenKnapsack/x64/openssl-1.0.2j-x64-windows.tar.lzma - 7z e openssl-1.0.2j-x64-windows.tar.lzma - 7z x -y -oC:\Ruby${Env:ruby_version} openssl-1.0.2j-x64-windows.tar - } else { - # RubyInstaller2; openssl package seems to be installed already - $Env:openssl_dir = "C:\msys64\mingw64" - } - - bundle config --local path vendor/bundle - - # Download & extract libcurl - # Copy libcurl.{dll,lib} and add to PATH, so that libcurl.dll is found during the tests - - ps: | - appveyor DownloadFile "https://dl.dropboxusercontent.com/s/jxwohqax4e2avyt/libcurl-7.48.0-WinSSL-zlib-x86-x64.zip?dl=0" -FileName libcurl.zip - 7z x libcurl.zip - cp dmd2\windows\bin64\libcurl.dll C:\Ruby${Env:ruby_version}\bin - cp dmd2\windows\lib64\curl.lib C:\Ruby${Env:ruby_version}\bin - - - bundle config build.openssl --with-openssl-dir=%openssl_dir% - - bundle config build.eventmachine --use-system-libraries --with-ssl-dir=%openssl_dir% - - ruby -v - - bundle -v -build_script: - # Support pure ruby eventmachine for windows - # https://github.com/eventmachine/eventmachine/issues/820 - # https://github.com/eventmachine/eventmachine/issues/800 - # - - gem install eventmachine --platform ruby - - bundle install -test_script: - - bundle exec rake --quiet -cache: - - vendor/bundle