summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaymala Sinha <jsinha@chef.io>2019-09-05 16:00:31 -0400
committerJaymala Sinha <jsinha@chef.io>2019-09-05 16:00:31 -0400
commit39af756bedd8851fab936fac5bf2f08fa5e815a8 (patch)
treedc3860fcbe39eac08216cf50ea0bfa6d8734e541
parentbd117ff6525f81ec3417268560c33d07537b57a1 (diff)
downloadchef-39af756bedd8851fab936fac5bf2f08fa5e815a8.tar.gz
Migrate verification from Appveyor to Buildkite
Signed-off-by: Jaymala Sinha <jsinha@chef.io>
-rw-r--r--.expeditor/verify.pipeline.yml1
-rw-r--r--appveyor.yml76
2 files changed, 0 insertions, 77 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml
index 69142c4719..96b1e8e81d 100644
--- a/.expeditor/verify.pipeline.yml
+++ b/.expeditor/verify.pipeline.yml
@@ -225,7 +225,6 @@ steps:
executor:
docker:
host_os: windows
- os_version: 2016
environment:
- FORCE_FFI_YAJL=ext
- CHEF_LICENSE=accept-no-persist
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index b7be639c1b..0000000000
--- a/appveyor.yml
+++ /dev/null
@@ -1,76 +0,0 @@
-version: "master-{build}"
-
-os: Visual Studio 2017
-platform:
- - x64
-
-cache:
- - vendor/bundle
-
-configuration:
- - integration
- - functional
- - unit
-
-environment:
- matrix:
- - ruby_version: "25-x64"
- - ruby_version: "26-x64"
-
-clone_folder: c:\projects\chef
-clone_depth: 1
-
-skip_commits:
- # version bumps by Expeditor happen as a separate commit after the merge, we can skip
- message: /Bump version to [0-9.]+ by Chef Expeditor/
- # if ONLY the files listed below are changed in a commit, skip
- files:
- - CHANGELOG.md
- - RELEASE_NOTES.md
-
-skip_tags: true
-branches:
- only:
- - master
- - chef-14
-
-install:
- - systeminfo
- - winrm quickconfig -q
- - SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- - echo %PATH%
- - appveyor DownloadFile http://curl.haxx.se/ca/cacert.pem -FileName C:\cacert.pem
- - set SSL_CERT_FILE=C:\cacert.pem
- - bundle config --local path vendor/bundle # use the cache we define above
- - bundle install --jobs=3 --retry=3 --without omnibus_package docgen chefstyle
- - SET SPEC_OPTS=--format progress
- - SET CHEF_LICENSE="accept-no-persist"
-
-build: off
-
-before_test:
- - ruby --version
- - gem --version
- - bundler --version
- - bundle env
-
-for:
- -
- matrix:
- only:
- - configuration: integration
- build_script:
- - bundle exec rake spec:integration
- -
- matrix:
- only:
- - configuration: functional
- build_script:
- - bundle exec rake spec:functional
- -
- matrix:
- only:
- - configuration: unit
- build_script:
- - bundle exec rake spec:unit
- - bundle exec rake component_specs