我正在为我的毕业最终项目开发一个创业板,而Travis CI的建设却在不断失败.
这是我在特拉维斯的链接:https://travis-ci.org/ricardobond/perpetuus/builds/8709218
构建错误是:
$ bundle exec rake
rake aborted!
Don't know how to build task 'default'
/home/travis/.rvm/gems/ruby-1.9.3-p448/bin/ruby_noexec_wrapper:14:in `eval'
/home/travis/.rvm/gems/ruby-1.9.3-p448/bin/ruby_noexec_wrapper:14:in `<main>'
(See full trace by running task with --trace)
The command "bundle exec rake" exited with 1.
Done. Your build exited with 1.
Run Code Online (Sandbox Code Playgroud)
以下是我的 perpetuus.gemspec
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'perpetuus/version'
Gem::Specification.new do |spec|
spec.name = "perpetuus"
spec.version = Perpetuus::VERSION
spec.authors = ["Ricardo Caldeira"]
spec.email = ["ricardo.nezz@gmail.com"]
spec.description = %q{A continuous deploy GEM}
spec.summary = %q{Built on top of Ruby on Rails}
spec.homepage = ""
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
end
Run Code Online (Sandbox Code Playgroud)
这是我的Gemfile:
source 'https://rubygems.org'
# Specify your gem's dependencies in perpetuus.gemspec
gemspec
group :development, :test do
gem "rspec", "~> 2.13"
end
Run Code Online (Sandbox Code Playgroud)
有小费吗?
我在Mac OS和RVM 1.19.1上使用Ruby 2.0.0
您没有配置默认任务Rakefile.如果你想让Travis运行你的测试套件你应该在你的Rakefile中添加这样的东西:
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
task :default => :spec
Run Code Online (Sandbox Code Playgroud)
您可以通过rake在项目目录中运行来在本地测试此配置.
| 归档时间: |
|
| 查看次数: |
1074 次 |
| 最近记录: |