Which isn't a common Jenkins build tool?
Excel is not used to build things.
During a proposal, you need to quickly retrieve configuration for a demo of a project named ''My Freestyle Project'', which is in the "Freestyles" folder, in a neat and easily-readable XML format using a REST API call. What is the correct syntax for the call?
You can retrieve an XML config with all of the project configuration with a 'GET' on that URL. Two are incorrect because they don't show the containing folder in the path.
Which is not an option in the Install Wizard?
By default, you are only prompted to add user/password credentials for the administrator user.
You want to archive and track a build artifact, "build/mybuilt.jar", with a fingerprint from your team's build. How would you invoke the archiveArtifacts function to accomplish this?
Example with Context: post { success { archiveArtifacts artifacts: 'build/mybuilt.jar', fingerprint: true } }
In a JUnit report, if we set the "Health report amplification factor" to 2 and there's a 1% failure, what's the health score?
You would take 100% then subtract (1%*2), thus 98%.