From 1d3ec08790a54a2a5b66fb3cc41cb66686f53117 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Mon, 22 Jul 2019 12:20:57 -0700 Subject: Replace Appveyor with Buildkite This way we test it all in one place Signed-off-by: Tim Smith --- .expeditor/verify.pipeline.yml | 15 ++++++++++++++ appveyor.yml | 46 ------------------------------------------ 2 files changed, 15 insertions(+), 46 deletions(-) delete mode 100644 appveyor.yml diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml index 1a3dd9e..7865325 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -1,3 +1,9 @@ +--- +expeditor: + defaults: + buildkite: + timeout_in_minutes: 30 + steps: - label: run-lint-and-specs-ruby-2.4 @@ -26,3 +32,12 @@ steps: executor: docker: image: ruby:2.6-stretch + +- label: run-specs-windows + command: + - bundle install --jobs=7 --retry=3 --without docs debug + - bundle exec rake + expeditor: + executor: + docker: + host_os: windows diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 6beccae..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,46 +0,0 @@ -version: "master-{build}" - -os: Visual Studio 2017 -platform: - - x64 - -cache: - - vendor/bundle - -environment: - matrix: - - ruby_version: "24-x64" - - ruby_version: "25-x64" - - ruby_version: "26-x64" - -clone_folder: c:\projects\mixlib-authentication -clone_depth: 1 -skip_tags: true -branches: - only: - - master - -skip_commits: - # version bumps by Expeditor happen as a separate commit after the merge, we can skip - author: Chef Expeditor - # if ONLY the files listed below are changed in a commit, skip - files: - - MAINTAINERS.md - - MAINTAINERS.toml - - CHANGELOG.md - - RELEASE_NOTES.md - -install: - - SET PATH=C:\Ruby%ruby_version%\bin;%PATH% - - echo %PATH% - - ruby --version - - gem update --system - - gem --version - - gem install bundler --quiet --no-document - - bundler --version - -build_script: - - bundle install --jobs=7 --retry=3 --without docs debug - -test_script: - - bundle exec rspec -- cgit v1.2.1