Cross-platform testing in Bitbucket Pipelines

In Bitbucket Pipelines, you can use multiple steps with different build images to test your software with different versions of the same platform, library or dependency.

Testing with different Java versions

Below is a sample YAML configuration file that shows how to run the same set of tests in a Maven project with Java 7 and Java 8.

1 2 3 4 5 6 7 8 9 10 11 12 pipelines: default: - step: name: Java 7 image: maven:3.5.2-jdk-7 script: - mvn clean install - step: name: Java 8 image: maven:3.5.2-jdk-8 script: - mvn clean install

Other platforms

For more information on the different Docker images available to use for Pipelines build environments, see Use Docker images as build environments.

Test reporting

If running your tests generates xUnit-compatible results, your test report will be shown in the log view.

Additional Help