mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
Pin the ffi version < 1.17.0 (#7053)
* Pin the ffi version to be less than v1.17.0 as it's breaking the verify pipeline Signed-off-by: Vasu1105 <vjagdale@progress.com> * Adds comments for pinning ffi version Signed-off-by: Vasu1105 <vjagdale@progress.com> --------- Signed-off-by: Vasu1105 <vjagdale@progress.com>
This commit is contained in:
parent
77969e2f37
commit
f061146ec6
1 changed files with 4 additions and 1 deletions
5
Gemfile
5
Gemfile
|
@ -20,7 +20,10 @@ gem "inspec", path: "."
|
|||
# in it in order to package the executable. Hence the odd backwards dependency.
|
||||
gem "inspec-bin", path: "./inspec-bin"
|
||||
|
||||
gem "ffi", ">= 1.9.14", "!= 1.13.0", "!= 1.14.2"
|
||||
# ffi version v1.17.0 is breaking verify pipeline as it requires
|
||||
# rubygems version to be upgraded to >= 3.3.22 Ref:https://buildkite.com/chef/inspec-inspec-main-verify-private/builds/812#018fe177-2ccb-45ed-a25e-213c8a6453df/698-707
|
||||
|
||||
gem "ffi", ">= 1.15.5", "< 1.17.0"
|
||||
|
||||
# inspec tests depend text output that changed in the 3.10 release
|
||||
# but our runtime dep is still 3.9+
|
||||
|
|
Loading…
Reference in a new issue