summaryrefslogtreecommitdiff
path: root/.expeditor/verify.pipeline.yml
diff options
context:
space:
mode:
authorJaymala Sinha <jsinha@chef.io>2019-10-03 11:57:43 -0400
committerJaymala Sinha <jsinha@chef.io>2019-10-03 12:36:48 -0400
commiteded69ff45df3f083444edb3a5c3cddc7db25eb3 (patch)
tree5590fad5bed834685d06c8af2e28dae3992d3730 /.expeditor/verify.pipeline.yml
parentdb10f274b2455b4bdd04fba6968ff18f8e8f3b41 (diff)
downloadffi-yajl-eded69ff45df3f083444edb3a5c3cddc7db25eb3.tar.gz
Enable expeditor and BK verification testsjsinha/add_expeditor
Enable publishing to rubygems Signed-off-by: Jaymala Sinha <jsinha@chef.io>
Diffstat (limited to '.expeditor/verify.pipeline.yml')
-rw-r--r--.expeditor/verify.pipeline.yml40
1 files changed, 40 insertions, 0 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml
new file mode 100644
index 0000000..ae9971f
--- /dev/null
+++ b/.expeditor/verify.pipeline.yml
@@ -0,0 +1,40 @@
+steps:
+
+- label: run-lint-and-specs-ruby-2.4
+ command:
+ - export USER="root"
+ - bundle install --jobs=7 --retry=3 --without docs development
+ - bundle exec rake
+ expeditor:
+ executor:
+ docker:
+ image: ruby:2.4-stretch
+
+- label: run-lint-and-specs-ruby-2.6
+ command:
+ - export USER="root"
+ - bundle install --jobs=7 --retry=3 --without docs development
+ - bundle exec rake
+ expeditor:
+ executor:
+ docker:
+ image: ruby:2.6-stretch
+
+- label: run-lint-and-specs-jruby
+ command:
+ - bundle install --jobs=7 --retry=3 --without docs development
+ - export USER="root"
+ - bundle exec rake
+ expeditor:
+ executor:
+ docker:
+ image: jruby
+
+- label: run-specs-windows
+ command:
+ - /workdir/.expeditor/buildkite/verify.ps1
+ expeditor:
+ executor:
+ docker:
+ host_os: windows
+ shell: ["powershell", "-Command"]