summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"