Skip to content

Commit

Permalink
Merge pull request #110 from myii/ci/restrict-train-gem-version-until…
Browse files Browse the repository at this point in the history
…-fix-released

feat(gemfile): restrict `train` gem version until upstream fix
  • Loading branch information
myii committed Dec 16, 2019
2 parents 79e8580 + 26dc8a3 commit 8c2fa0b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ source 'https://rubygems.org'
gem 'kitchen-docker', '>= 2.9'
gem 'kitchen-inspec', '>= 1.1'
gem 'kitchen-salt', '>= 0.6.0'
# Latest versions of `train` cause failure when running `kitchen verify`
# Downgrading to `3.2.0` until this is fixed upstream
# https://github.com/inspec/train/pull/544#issuecomment-566055052
gem 'train', '3.2.0'
4 changes: 2 additions & 2 deletions ssf/defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ ssf_node_anchors:
# An alternative method could be to use:
# `git describe --abbrev=0 --tags`
# yamllint disable rule:line-length
title: 'feat(semantic-release): implement for this formula'
body: '* Automated using https://github.com/myii/ssf-formula/pull/109'
title: 'ci(gemfile): restrict `train` gem version until upstream fix [skip ci]'
body: '* Automated using https://github.com/myii/ssf-formula/pull/110'
# yamllint enable rule:line-length
github:
owner: 'saltstack-formulas'
Expand Down
4 changes: 4 additions & 0 deletions ssf/files/default/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ source 'https://rubygems.org'
gem 'kitchen-docker', '>= 2.9'
gem 'kitchen-inspec', '>= 1.1'
gem 'kitchen-salt', '>= 0.6.0'
# Latest versions of `train` cause failure when running `kitchen verify`
# Downgrading to `3.2.0` until this is fixed upstream
# https://github.com/inspec/train/pull/544#issuecomment-566055052
gem 'train', '3.2.0'
5 changes: 4 additions & 1 deletion ssf/files/tofs_openvpn-formula/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@

source 'https://rubygems.org'

gem 'inspec'
gem 'kitchen-docker', '>= 2.9'
gem 'kitchen-inspec', '>= 1.1'
gem 'kitchen-salt', '>= 0.6.0'
gem 'rspec-retry'
# Latest versions of `train` cause failure when running `kitchen verify`
# Downgrading to `3.2.0` until this is fixed upstream
# https://github.com/inspec/train/pull/544#issuecomment-566055052
gem 'train', '3.2.0'

group :vagrant do
gem 'kitchen-vagrant'
Expand Down
4 changes: 4 additions & 0 deletions ssf/files/tofs_vault-formula/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ gem 'inspec', '~> 4.16.0'
gem 'kitchen-docker', '>= 2.9'
gem 'kitchen-inspec', '>= 1.1'
gem 'kitchen-salt', '>= 0.6.0'
# Latest versions of `train` cause failure when running `kitchen verify`
# Downgrading to `3.2.0` until this is fixed upstream
# https://github.com/inspec/train/pull/544#issuecomment-566055052
gem 'train', '3.2.0'

0 comments on commit 8c2fa0b

Please sign in to comment.