The ability to run Azure Pipelines on Azure DevOps self-hosted agents.
An Azure DevOps project. If you don't have one, Create a project now.
Create a GitHub repository
Fork the following repo to your GitHub account:
text
https://github.com/MicrosoftDocs/pipelines-java
Create a pipeline
Sign in to your Azure DevOps organization and go to your project.
Go to Pipelines, and then select New pipeline or Create pipeline if creating the first pipeline in the project.
Perform the steps of the wizard by first selecting GitHub as the location of your source code. You might be redirected to GitHub to sign in. If so, enter your GitHub credentials.
Select your repo. You might be redirected to GitHub to install the Azure Pipelines app. If so, select Approve & install.
When you see the Configure your pipeline tab, select Maven, Gradle, or Ant depending on how you want to build your code.
A azure-pipelines.yml file containing your pipeline definition is created in your repo and opened in the YAML editor. You can customize the pipeline by adding more tasks or modifying the existing tasks. For more information about the build tasks, see Build your code.
When you're finished editing the azure-pipelines.yml, select Save and run.
To commit the azure-pipelines.yml file to your repo, select Save and run again.
Select Job to watch your pipeline in action.
Go to your collection and select your project.
Select Pipelines, and then select New pipeline or Create pipeline if creating the first pipeline in the project.
Perform the steps of the wizard by first selecting GitHub Enterprise Server as the location of your source code.
Use an existing GitHub service connection or create a new one.
To create a service connection:
Select Connect to GitHub Enterprise Server.
Enter your GitHub Enterprise Server URL.
Enter your GitHub Enterprise Server personal access token. If you don't have a personal access token, you can create one in your GitHub Enterprise Server account. For more information, see Creating a personal access token.
Select your repository. You might be redirected to GitHub to install the Azure Pipelines app. If so, select Approve & install.
When you see the Configure your pipeline tab, select Maven, Gradle, or Ant depending on how you want to build your code.
An azure-pipelines-yml file containing your pipeline definition is created in your repo and opened in the YAML editor. You can customize the pipeline by adding more tasks or modifying the existing tasks. For more information about the build tasks, see Build your code.
When you're finished editing the azure-pipelines.yml, select Save and run.
To commit the azure-pipelines.yml file to your repo, select Save and run again.
You can select Job to watch your pipeline in action.
You now have a working YAML pipeline (azure-pipelines.yml) in your repo that's ready for you to customize! To make changes to your pipeline, select it in the Pipelines page, and then Edit the azure-pipelines.yml file.
Build environment
You can use Azure Pipelines to build Java apps without needing to set up any infrastructure of your own. You can build on Windows, Linux, or macOS images. The Microsoft-hosted agents in Azure Pipelines have modern JDKs and other tools for Java preinstalled. To know which versions of Java are installed, see Microsoft-hosted agents.
To select the appropriate image, update the following snippet in your azure-pipelines.yml file.
YAML
pool: vmImage:'ubuntu-latest'# other options: 'macOS-latest', 'windows-latest'
As an alternative to using Microsoft-hosted agents, you can set up self-hosted agents with Java installed. You can also use self-hosted agents to save more time if you have a large repo or you run incremental builds.
Your builds run on a self-hosted agent. Make sure that you have Java and the tools necessary to build with your chosen method installed on the agent's host.
You can select your agent pool and the agent capabilities in the Agent pool and Agent Specification sections of the Options tab in the pipeline editor.
For example to specify the agent pool and an agent with the Maven capability, add the following snippet to your azure-pipelines.yml file.
YAML
pool: name:MyPool demands:maven
Build your code
You can build your Java app with Maven, Gradle, Ant, or a script. The following sections show you how to add a build step to your pipeline for each method.
Maven
With your Maven build, the following tasks are added to your azure-pipelines.yml file. Replace the values to match your project. For more information about the task options, see the Maven task.
For Spring Boot, you can use the Maven task as well. Make sure that your mavenPomFile value reflects the path to your pom.xml file. For example, if you're using the Spring Boot sample repo, your path is complete/pom.xml.
Customize the build path
Adjust the mavenPomFile value if your pom.xml file isn't in the root of the repo. The file path value should be relative to the root of the repo, such as IdentityService/pom.xml or $(system.defaultWorkingDirectory)/IdentityService/pom.xml.
Customize Maven goals
Set the goals value to a space-separated list of goals for Maven to execute, such as clean package. For details about common Java phases and goals, see Apache's Maven documentation.
Gradle
With the Gradle build, the following task is added to your azure-pipelines.yml file. For more information about these options, see the Gradle task.
You need to have a gradlew file in your repo. If you don't have one, you can generate it by running gradle wrapper in your project's root directory. For information about creating a Gradle wrapper, see the Gradle.
Choose the version of Gradle
The version of Gradle installed on the agent machine is used unless your repo's gradle/wrapper/gradle-wrapper.properties file has a distributionUrl property that specifies a different Gradle version to download and use during the build.
Adjust the build path
Adjust the workingDirectory value if your gradlew file isn't in the root of the repo.
The directory value should be relative to the root of the repo, such as IdentityService or $(system.defaultWorkingDirectory)/IdentityService.
Adjust the gradleWrapperFile value if your gradlew file isn't in the root of the repo. The file path value should be relative to the root of the repo, such as IdentityService/gradlew or $(system.defaultWorkingDirectory)/IdentityService/gradlew.
Adjust Gradle tasks
Adjust the tasks value for the tasks that Gradle should execute, such as build or check. For more information about common Java Plugin tasks for Gradle, see Gradle's documentation.
Ant
With Ant build, add the following task to your azure-pipelines.yml file. Change values, such as the path to your build.xml file, to match your project configuration. For more information about these options, see the Ant task. If using the sample repo, you need to provide a build.xml file in your repo.
You can publish your build output to your pipeline. You can package and publish your app in a Maven package or a .war/jar file to be deployed to a web application.
Learn more about creating a CI/CD pipeline for your deployment target:
Pievienojieties meetup sērijai, lai kopā ar citiem izstrādātājiem un ekspertiem izveidotu mērogojamus AI risinājumus, kuru pamatā ir reālas lietošanas gadījumi.
In this learning path, find out how to collaborate with others to continuously build, test, and verify your applications using Azure Pipelines and GitHub.
This certification measures your ability to accomplish the following technical tasks: Design and implement processes and communications, design and implement a source control strategy, design and implement build and release pipelines, develop a security and compliance plan, and implement an instrumentation strategy.