Sha256: 10ffc00fbadb3d7416bcd5be4040d3e8255c6c5f5fcf4a6a79b5975a00a757ac

Contents?: true

Size: 565 Bytes

Versions: 20

Compression:

Stored size: 565 Bytes

Contents

#!/usr/bin/env rake
require "bundler/gem_tasks"
require 'ci/reporter/rake/rspec'
require 'ci/reporter/rake/cucumber'
require 'cucumber'
require 'cucumber/rake/task'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new :spec
Cucumber::Rake::Task.new :features

task :jenkins => ['ci:setup:rspec', :spec, 'ci:setup:cucumber_report_cleanup'] do
  Cucumber::Rake::Task.new do |t|
    t.cucumber_opts = "--format CI::Reporter::Cucumber"
  end.runner.run
  File.write('build_number', ENV['BUILD_NUMBER']) if ENV['BUILD_NUMBER']
end

task default: [:spec, :features]

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
conjur-cli-4.9.3 Rakefile
conjur-cli-4.8.0 Rakefile
conjur-cli-4.7.5 Rakefile
conjur-cli-4.7.4 Rakefile
conjur-cli-4.7.3 Rakefile
conjur-cli-4.7.2 Rakefile
conjur-cli-4.7.1 Rakefile
conjur-cli-4.7.0 Rakefile
conjur-cli-4.6.1 Rakefile
conjur-cli-4.5.1 Rakefile
conjur-cli-4.5.0 Rakefile
conjur-cli-4.4.0 Rakefile
conjur-cli-4.3.0 Rakefile
conjur-cli-4.1.1 Rakefile
conjur-cli-4.1.0 Rakefile
conjur-cli-2.6.0 Rakefile
conjur-cli-2.4.1 Rakefile
conjur-cli-2.4.0 Rakefile
conjur-cli-2.3.0 Rakefile
conjur-cli-2.2.1 Rakefile