summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2019-07-22 12:20:57 -0700
committerTim Smith <tsmith84@gmail.com>2019-08-06 20:33:17 -0700
commitadefcc42a66ec9c95ba910232ab5440378c72a00 (patch)
treebd5a5e7a498255eade31c3ad2cb8adc041078222
parentad892a9af8ca4c8fa1ccacc7352b3c5c2f0c88e1 (diff)
downloadmixlib-authentication-adefcc42a66ec9c95ba910232ab5440378c72a00.tar.gz
Replace Appveyor with Buildkite
This way we test it all in one place Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--.expeditor/verify.pipeline.yml15
-rw-r--r--appveyor.yml46
2 files changed, 15 insertions, 46 deletions
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