From e3938ecd6a1b4abd4c3ab35f0a639a2c77621fda Mon Sep 17 00:00:00 2001 From: Miah Johnson Date: Mon, 29 Jul 2019 13:11:44 -0700 Subject: [PATCH] Remove travis and appveyor Signed-off-by: Miah Johnson --- .travis.yml | 45 --------------------------------------------- appveyor.yml | 51 --------------------------------------------------- 2 files changed, 96 deletions(-) delete mode 100644 .travis.yml delete mode 100644 appveyor.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index ac005f2e..00000000 --- a/.travis.yml +++ /dev/null @@ -1,45 +0,0 @@ ---- -sudo: required -language: ruby -cache: bundler - -# necessary for docker to work -dist: xenial -services: - - docker - -bundler_args: --without integration tools - -branches: - only: - - master - - 2-release - -matrix: - include: - - rvm: 2.4.5 - before_install: - - gem install bundler - - gem --version - - rvm: 2.5.5 - before_install: - - gem install bundler - - gem --version - - rvm: 2.6 - script: bundle exec rake $SUITE - env: SUITE="test" - - rvm: 2.6 - script: bundle exec rake $SUITE - env: SUITE="test:docker config=test-travis-debian.yml" - - rvm: 2.6 - script: bundle exec rake $SUITE - env: SUITE="test:docker config=test-travis-centos.yml" - - rvm: 2.6 - script: bundle exec rake $SUITE - env: SUITE="test:docker config=test-travis-oel.yml" - - rvm: 2.6 - script: bundle exec rake $SUITE - env: SUITE="test:docker config=test-travis-fedora.yml" - - rvm: 2.6 - script: bundle exec rake $SUITE - env: SUITE="test:docker config=test-travis-ubuntu.yml" diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index bb739093..00000000 --- a/appveyor.yml +++ /dev/null @@ -1,51 +0,0 @@ -version: "master-{build}" - -os: Visual Studio 2017 -platform: - - x64 - -environment: - winrm_user: test_user - winrm_pass: Pass@word1 - - matrix: - - ruby_version: "24" - train_target: winrm://test_user@localhost:5985 - - - ruby_version: "25" - train_target: winrm://test_user@localhost:5985 - - - ruby_version: "26" - train_ssl: true - train_target: winrm://test_user@localhost:5986 - -clone_folder: c:\projects\train -clone_depth: 1 - -branches: - only: - - master - -cache: - - vendor/bundle -> appveyor.yml - -install: - - systeminfo - - winrm quickconfig -q - - ps: net user /add $env:winrm_user $env:winrm_pass - - ps: net localgroup administrators $env:winrm_user /add - - ps: $env:winrm_cert = (New-SelfSignedCertificate -DnsName localhost -CertStoreLocation cert:\localmachine\my).Thumbprint - - ps: winrm create winrm/config/Listener?Address=*+Transport=HTTPS "@{Hostname=`"localhost`";CertificateThumbprint=`"$($env:winrm_cert)`"}" - - ps: $env:PATH="C:\Ruby$env:ruby_version\bin;$env:PATH" - - ps: Write-Host $env:PATH - - ruby --version - - gem --version - - bundler --version - - ruby -r rubygems -e "p Gem.path" - -build_script: - - bundle install --path=vendor/bundle --without integration tools - -test_script: - - SET SPEC_OPTS=--format progress - - bundle exec rake test:windows