We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b22f01b commit cac7f7aCopy full SHA for cac7f7a
.buckjavaargs
@@ -1 +1 @@
1
--Xmx2048m -XX:+HeapDumpOnOutOfMemoryError
+-Xmx1g -XX:+HeapDumpOnOutOfMemoryError
appveyor.yml
@@ -0,0 +1,9 @@
+shallow_clone: true
2
+build: off
3
+install:
4
+ - 'set JAVA_HOME=C:\Program Files (x86)\Java\jdk1.8.0'
5
+ - 'set PATH=%JAVA_HOME%;%PATH%'
6
+ - 'set RUBY_HOME=C:\Ruby22-x64\bin'
7
+ - 'set PATH=%RUBY_HOME%;%PATH%'
8
+test_script:
9
+ - cmd: './go build'
rake-tasks/buck.rb
@@ -83,7 +83,8 @@ def output
83
proc.wait
84
85
if proc.exit_code != 0
86
- raise "Buck build failed"
+ raise "Buck build failed with exit code: #{proc.exit_code}
87
+stdout: #{proc.io.stdout.output}"
88
end
89
90
block.call(proc.io.stdout.output) if block
0 commit comments