From 6f5af51bb61638d94f50d6c9fdfd032882f2c573 Mon Sep 17 00:00:00 2001 From: Gosuke Miyashita Date: Mon, 25 Dec 2023 12:46:51 +0900 Subject: [PATCH] Remove appveyor.yml --- appveyor.yml | 67 ---------------------------------------------------- 1 file changed, 67 deletions(-) delete mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index fa3f1bbb..00000000 --- a/appveyor.yml +++ /dev/null @@ -1,67 +0,0 @@ -version: "{build}" -image: Visual Studio 2019 - -platform: - - x64 - -environment: - bundle_gemfile: integration-test/Gemfile.winrm - bundler_url: https://rubygems.org/downloads/bundler-1.9.9.gem - - matrix: - - ruby_version: "200" - - ruby_version: "21" - - ruby_version: "22" - - ruby_version: "23" - - ruby_version: "24" - - ruby_version: "25" - - ruby_version: "26" - - ruby_version: "27" - - ruby_version: "30" - -clone_depth: 5 - -cache: - - C:\Ruby200\lib\ruby\gems\2.0.0 -> appveyor.yml - - C:\Ruby200\bin -> appveyor.yml - - C:\Ruby21\lib\ruby\gems\2.1.0 -> appveyor.yml - - C:\Ruby21\bin -> appveyor.yml - - C:\Ruby22\lib\ruby\gems\2.2.0 -> appveyor.yml - - C:\Ruby22\bin -> appveyor.yml - - C:\Ruby23\lib\ruby\gems\2.3.0 -> appveyor.yml - - C:\Ruby23\bin -> appveyor.yml - - C:\Ruby24\lib\ruby\gems\2.4.0 -> appveyor.yml - - C:\Ruby24\bin -> appveyor.yml - - C:\Ruby25\lib\ruby\gems\2.5.0 -> appveyor.yml - - C:\Ruby25\bin -> appveyor.yml - - C:\Ruby27\lib\ruby\gems\2.7.0 -> appveyor.yml - - C:\Ruby27\bin -> appveyor.yml - - C:\Ruby30\lib\ruby\gems\3.0.0 -> appveyor.yml - - C:\Ruby30\bin -> appveyor.yml - -install: - - git submodule update --init --recursive - - ps: Enable-PSRemoting -Force - - winrm quickconfig -q - - winrm set winrm/config/client @{TrustedHosts="*"} - - winrm set winrm/config/client/auth @{Basic="true"} - - winrm set winrm/config/service/auth @{Basic="true"} - - winrm set winrm/config/service @{AllowUnencrypted="true"} - - SET PATH=C:\Ruby%ruby_version%\bin;%PATH% - - echo %PATH% - - ruby --version - - gem --version - - appveyor DownloadFile -Url %bundler_url% -FileName bundler.gem - - gem install --local bundler.gem --no-document --force ## appveyor often stops `gem install bundler`..? - - ps: $PSVersionTable - -build_script: - - set SSL_CERT_FILE=C:/ruby24-x64/ssl/cert.pem - - ruby -rfileutils -e 'FileUtils.rm_r(File.join(Gem.dir, "cache", "bundler")) if Dir.exists?(File.join(Gem.dir, "cache", "bundler"))' - - bundle install --jobs 3 --retry 3 - - net user - - net localgroup - -test_script: - - net user appveyor %WINDOWS_PASSWORD% # set by webui - - bundle exec rspec -fd --backtrace -r .\integration-test\winrm\spec_helper.rb .\integration-test\winrm