pallassgj / bpipe

Automatically exported from code.google.com/p/bpipe
0 stars 1 forks source link

Hello World fails in bpipe-0.9.8.1 on Mac OS X 10.7.5 #78

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

1.
Install bpipe-0.9.8.1

2.
Define helloworld.bpipe:

hello = {
  exec "echo Hello"
}
world = {
  exec "echo World"
}

Bpipe.run { hello + world }

3.
$ /usr/local/bpipe/bpipe-0.9.8.1/bin/bpipe helloworld.bpipe 

What is the expected output? What do you see instead?

java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.codehaus.groovy.tools.GroovyStarter.rootLoader(GroovyStarter.java:106)
    at org.codehaus.groovy.tools.GroovyStarter.main(GroovyStarter.java:128)
Caused by: java.lang.UnsupportedClassVersionError: bpipe/PipelineTestAbort : 
Unsupported major.minor version 51.0
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClassCond(ClassLoader.java:631)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:615)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:283)
    at java.net.URLClassLoader.access$000(URLClassLoader.java:58)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:197)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at org.codehaus.groovy.tools.RootLoader.oldFindClass(RootLoader.java:171)
    at org.codehaus.groovy.tools.RootLoader.loadClass(RootLoader.java:143)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:171)
    at bpipe.Runner.class$(Runner.groovy)
    at bpipe.Runner.$get$$class$bpipe$Pipeline(Runner.groovy)
    at bpipe.Runner.loadPipelineSrc(Runner.groovy:426)
    at bpipe.Runner$loadPipelineSrc.callStatic(Unknown Source)
    at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCallStatic(CallSiteArray.java:53)
    at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callStatic(AbstractCallSite.java:157)
    at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callStatic(AbstractCallSite.java:169)
    at bpipe.Runner.main(Runner.groovy:262)
    ... 6 more
/usr/local/bpipe/bpipe-0.9.8.1/bin/bpipe: line 123:  4075 Terminated: 15        
  tail -f $LOGFILE

What version of the product are you using? On what operating system?

bpipe-0.9.8.1
Mac OS X 10.7.5

Please provide any additional information below.

I installed 0.9.8 and was abe to run without problems.

Original issue reported on code.google.com by nathan.h...@gmail.com on 20 Jun 2013 at 8:59