Get started with Bitbucket Cloud
New to Bitbucket Cloud? Check out our get started guides for new users.
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.
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
For more information on the different Docker images available to use for Pipelines build environments, see Use Docker images as build environments.
If running your tests generates xUnit-compatible results, your test report will be shown in the log view.
Was this helpful?