×
Writing automated tests for Jenkins and its plugins is important to ensure that everything works as expected — in various scenarios, with multiple Java ...
The following examples are sourced from the the pipeline-examples repository on GitHub and contributed to by various members of the Jenkins project.
Defining a Pipeline through the classic UI is convenient for testing Pipeline code snippets, or for handling simple Pipelines or Pipelines that do not require ...
The Jenkins security team created a custom code scanner based on GitHub's CodeQL. It is capable of finding vulnerabilities common in Jenkins plugins. This page ...
Missing: Java | Show results with:Java
Assuming everything has executed successfully in the example Jenkins Pipeline, each successful Pipeline run will have associated build artifacts archived, test ...
Missing: Java | Show results with:Java
To collect our test results and artifacts, we will use the post section. Jenkinsfile (Declarative Pipeline). pipeline { agent any stages { stage('Test') ...
This guide provides a small selection of best practices for pipelines and points out the most common mistakes. The goal is to point pipeline authors and ...
"Build", "Test" and "Deploy" stages), which is used by many plugins to visualize or present Jenkins Pipeline status/progress.
Missing: Java | Show results with:Java
Apr 7, 2016 · Below you can find an example of Pipeline scripts, which runs tests on FPGA board. The id of this board comes from build parameters (fpgaId) ...
This allows tests to assert directly against the internal state of Jenkins, as well as perform some operations directly, as opposed to doing so only through the ...