Skip to content
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.

Commit

Permalink
Removing jruby and rubinius builds.
Browse files Browse the repository at this point in the history
Change-Id: I8b1aaad9ed542c7b715b70593a4c687af06f2587
  • Loading branch information
Elisabeth Hendrickson and Matthew Boedicker committed Jan 3, 2013
1 parent f1c83ab commit bccfd6f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 17 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
@@ -1,9 +1,6 @@
rvm: rvm:
- "1.9.3" - "1.9.3"
- "1.9.2" - "1.9.2"
- jruby-19mode
- rbx-19mode
- jruby-18mode
- "1.8.7" - "1.8.7"


env: env:
Expand Down
3 changes: 1 addition & 2 deletions spec/features/new_user_flow_spec.rb
Expand Up @@ -11,12 +11,11 @@
let(:app) { let(:app) {
fuzz = fuzz =
if defined? TRAVIS_BUILD_ID if defined? TRAVIS_BUILD_ID
puts "in travis with #{TRAVIS_BUILD_ID}"
TRAVIS_BUILD_ID TRAVIS_BUILD_ID
else else
Time.new.to_f.to_s.gsub(".", "_") Time.new.to_f.to_s.gsub(".", "_")
end end
puts "Got our fuzz number: #{fuzz}. Pushing to hello-sinatra-#{fuzz}"
"hello-sinatra-#{fuzz}" "hello-sinatra-#{fuzz}"
} }


Expand Down
13 changes: 1 addition & 12 deletions spec/support/feature_helpers.rb
@@ -1,19 +1,8 @@
def vmc_ok(argv) def vmc_ok(argv)
code = 0
output = ""
with_output_to do |out| with_output_to do |out|
code = VMC::CLI.start(argv + ["--no-script"]) code = VMC::CLI.start(argv + ["--no-script"])
yield out.string.strip_progress_dots if block_given? yield out.string.strip_progress_dots if block_given?
output = "OUTPUT:\n#{out}\n\n" expect(code).to eq 0
# expect(code).to eq 0
end
if code != 0
if File.exist?("/home/travis/builds/cloudfoundry/vmc/spec/tmp/.vmc/crash")
$stderr.puts "Found the crash file"
crashes = File.readlines("/home/travis/builds/cloudfoundry/vmc/spec/tmp/.vmc/crash")
output = "#{output} CRASHLOGS:\n#{crashes}\n"
end
$stderr.puts output
end end
end end


Expand Down

0 comments on commit bccfd6f

Please sign in to comment.