Jg jenkinsfile cleanup (#75)

* Update Jenkinsfile

make sure we don't ship unneeded build files

* Update ExampleDocumentTests.coffee

* use node 6.11.2 in jenkins file
This commit is contained in:
Joe Green
2017-09-28 11:50:33 +01:00
committed by GitHub
parent 1388093866
commit bd5a0ef36f
2 changed files with 14 additions and 8 deletions

View File

@@ -12,6 +12,9 @@ catch e
convertToPng = (pdfPath, pngPath, callback = (error) ->) ->
convert = ChildProcess.exec "convert #{fixturePath(pdfPath)} #{fixturePath(pngPath)}"
stdout = ""
convert.stdout.on "data", (chunk) -> console.log "STDOUT", chunk.toString()
convert.stderr.on "data", (chunk) -> console.log "STDERR", chunk.toString()
convert.on "exit", () ->
callback()