summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-08-09 18:33:09 -0700
committerTim Smith <tsmith84@gmail.com>2020-08-09 18:33:09 -0700
commit536609e5def373e81116fe7aa92fea6548669d6e (patch)
treefbb94b773183f0a8c01bf0e667e3452a78d84894
parentafe6b233d0dbec64c6d7304c9e976d53c755ef4d (diff)
downloadohai-536609e5def373e81116fe7aa92fea6548669d6e.tar.gz
Exclude profiling gems on Windows
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--.expeditor/config.yml2
-rw-r--r--.expeditor/verify.pipeline.yml2
-rw-r--r--Gemfile3
3 files changed, 4 insertions, 3 deletions
diff --git a/.expeditor/config.yml b/.expeditor/config.yml
index 973aaa03..a077c467 100644
--- a/.expeditor/config.yml
+++ b/.expeditor/config.yml
@@ -28,8 +28,6 @@ github:
version_constraint: 16.*
- 15-stable:
version_constraint: 15.*
- - 14-stable:
- version_constraint: 14.*
changelog:
rollup_header: Changes not yet released to rubygems.org
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml
index 8ac91308..91660d55 100644
--- a/.expeditor/verify.pipeline.yml
+++ b/.expeditor/verify.pipeline.yml
@@ -53,7 +53,7 @@ steps:
- label: run-specs-windows
command:
- bundle config --local path vendor/bundle
- - bundle install --jobs=7 --retry=3
+ - bundle install --jobs=7 --retry=3 --without=profile
- bundle exec rake spec
expeditor:
executor:
diff --git a/Gemfile b/Gemfile
index 2ad59d9e..fd738a71 100644
--- a/Gemfile
+++ b/Gemfile
@@ -24,5 +24,8 @@ group :debug do
gem "pry-byebug"
gem "pry-stack_explorer", "~> 0.4.0" # pin until we drop ruby < 2.6
gem "rb-readline"
+end
+
+group :profile do
gem "stackprof"
end