• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

jenkins: how to get all the information on console.

 
Ranch Hand
Posts: 1143
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i have installed jenkins on my machine, i have configured jdk and ant as global configuration, in manage jenkins.
i have created one job and running one ant target, it runs successfully, but at jenkins console it shows only success message and few information.
Started by user anonymous
Building in workspace C:\Apps\workspace\TestJob
Triggering default
default completed with result SUCCESS
Finished: SUCCESS

but i want it should show what target it has run, and all the information?
 
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Try looking at the "Console Output" for the build, that will have all of the Ant output.

Another possibility: make the Ant target an parameter to the build, then the target can be viewed in the "Parameters" for the build.

By the way, exactly what do you mean by "jenkins console"? Do you mean the command line window within which you started Jenkins, or do you mean the Jenkins UI that you access in the browser?
 
reply
    Bookmark Topic Watch Topic
  • New Topic