Sha256: 285bf45591fad33ba0291ac0e375e0673069e4f8b4e23f5eb546250b95aa5261
Contents?: true
Size: 1.07 KB
Versions: 23
Compression:
Stored size: 1.07 KB
Contents
require 'rubygems' require 'bundler' Bundler.require require 'rspec/core/rake_task' require "bundler/gem_tasks" RSpec::Core::RakeTask.new(:spec) desc "download test repo and run spec" task :default => ["test:create_repo", :spec] namespace :test do desc "download test repo" task :create_repo do dir = "fixtures/repo" unless File.directory? dir cmd = "git clone https://github.com/evrone/ci-worker-test-repo.git fixtures/repo" puts cmd system cmd end end end desc "run travis build" task :travis => :default namespace :print do task :script do require 'evrone/ci/message/testing' require File.expand_path("../spec/support/fixture", __FILE__) require File.expand_path("../spec/support/create", __FILE__) build = create :build travis = create :travis script_builder = travis.to_script_builder(build) puts "\n#===> BEGIN BEFORE SCRIPT" puts script_builder.to_before_script puts "#===> END BEFORE SCRIPT\n" puts "\n#===> BEGIN SCRIPT\n" puts script_builder.to_script puts "#===> END SCRIPT\n\n" end end
Version data entries
23 entries across 23 versions & 1 rubygems