summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-06-06 15:59:59 -0700
committerTim Smith <tsmith84@gmail.com>2019-07-19 17:13:44 -0700
commit88cd12e10891e5f68521537ad4bcc26f650bc6a9 (patch)
treee55a5800841fc6a1591a1d15ff35b47af09505fa
parent70b7b54cabef12e1cc4ac771c0952ad0c5c45eb8 (diff)
downloadohai-faster_bk.tar.gz
Try running a smaller container in BKfaster_bk
We'll see if this if faster Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--.expeditor/verify.pipeline.yml14
-rw-r--r--Gemfile2
2 files changed, 13 insertions, 3 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml
index 35f2feb8..35cedae6 100644
--- a/.expeditor/verify.pipeline.yml
+++ b/.expeditor/verify.pipeline.yml
@@ -7,6 +7,7 @@ steps:
expeditor:
executor:
docker:
+ image: ruby:2.6-stretch
- label: run-ohai
command:
@@ -15,24 +16,33 @@ steps:
expeditor:
executor:
docker:
+ image: ruby:2.6-stretch
- label: run-specs-ruby-2.5
command:
- - asdf local ruby 2.5.5
- bundle install --jobs=7 --retry=3 --without docs debug
- bundle exec rake spec
expeditor:
executor:
docker:
+ environment:
+ - "LANG=en_US.UTF-8"
+ - "LANGUAGE=en_US.UTF-8"
+ - "LC_ALL=en_US.UTF-8"
+ image: ruby:2.5-stretch
- label: run-specs-ruby-2.6
command:
- - asdf local ruby 2.6.3
- bundle install --jobs=7 --retry=3 --without docs debug
- bundle exec rake spec
expeditor:
executor:
docker:
+ environment:
+ - "LANG=en_US.UTF-8"
+ - "LANGUAGE=en_US.UTF-8"
+ - "LC_ALL=en_US.UTF-8"
+ image: ruby:2.6-stretch
- label: run-specs-windows
command:
diff --git a/Gemfile b/Gemfile
index 29f522eb..c824123a 100644
--- a/Gemfile
+++ b/Gemfile
@@ -4,7 +4,7 @@ gemspec
# NOTE: do not submit PRs to add pry as a dep, add to your Gemfile.local
group :development do
- gem "chefstyle", git: "https://github.com/chef/chefstyle.git", branch: "master"
+ gem "chefstyle"
gem "rake", ">= 10.1.0"
gem "rspec-core", "~> 3.0"
gem "rspec-expectations", "~> 3.0"