Sha256: a06cf9883a9b207edfe8d47605be110c361b1b8428c01a5320c34cea3721447f

Contents?: true

Size: 1.4 KB

Versions: 11

Compression:

Stored size: 1.4 KB

Contents

ruby_version, ruby_source = ENV['RUBY_VER'], "job parameter"
unless ruby_version
  ruby_version = "2.3.1"
  ruby_source = "default"
end
test_name "Install and configure Ruby #{ruby_version} (from #{ruby_source}) on the SUT" do

  step 'Ensure that the default system is an el-based system' do
    # The pre-suite currently only supports el systems, and we should
    #fail early if the default platform is not a supported platform
    assert(default.platform.variant == 'el',
           "Expected the platform variant to be 'el', not #{default.platform.variant}")
  end

  step 'clean out current ruby and its dependencies' do
    on default, 'yum remove ruby ruby-devel -y'
  end

  # These steps install git, openssl, and wget
  step 'install development dependencies' do
    on default, 'yum groupinstall "Development Tools" -y'
    on default, 'yum install openssl-devel -y'
    on default, 'yum install wget -y'
  end

  step "download and install ruby #{ruby_version}" do
    on default, "wget http://cache.ruby-lang.org/pub/ruby/#{ruby_version[0..2]}/ruby-#{ruby_version}.tar.gz"
    on default, "tar xvfz ruby-#{ruby_version}.tar.gz"
    on default, "cd ruby-#{ruby_version};./configure"
    on default, "cd ruby-#{ruby_version};make"
    on default, "cd ruby-#{ruby_version};make install"
  end

  step 'update gem on the SUT and install bundler' do
    on default, 'gem update --system;gem install --force bundler'
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
beaker-4.14.1 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-4.14.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-4.13.1 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-4.13.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-4.12.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-4.11.1 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-4.11.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-4.10.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-4.9.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-4.8.0 acceptance/pre_suite/subcommands/05_install_ruby.rb
beaker-4.7.0 acceptance/pre_suite/subcommands/05_install_ruby.rb