From ac7a982cfb799e735d501d1b816bf624e6f9c5ae Mon Sep 17 00:00:00 2001 From: Asit kumar sahoo <110346210+Kasit26@users.noreply.github.com> Date: Wed, 11 Jun 2025 17:15:39 +0530 Subject: [PATCH 1/2] Set up CI with Azure Pipelines from Azure Pipeline [skip ci] --- azure-pipelines.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000..5c22fc65 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,22 @@ +# Maven +# Build your Java project and run tests with Apache Maven. +# Add steps that analyze code, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/java + +trigger: +- master + +pool: + vmImage: ubuntu-latest + +steps: +- task: Maven@3 + inputs: + mavenPomFile: 'pom.xml' + mavenOptions: '-Xmx3072m' + javaHomeOption: 'JDKVersion' + jdkVersionOption: '1.11' + jdkArchitectureOption: 'x64' + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' + goals: 'package' From c7a8e0e7ef8b6bc72582ebd7ee1b41f367aa60f8 Mon Sep 17 00:00:00 2001 From: Asit kumar sahoo <110346210+Kasit26@users.noreply.github.com> Date: Wed, 11 Jun 2025 17:28:11 +0530 Subject: [PATCH 2/2] Update azure-pipelines.yml --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5c22fc65..4bc2aa3d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -4,7 +4,7 @@ # https://docs.microsoft.com/azure/devops/pipelines/languages/java trigger: -- master +- azure-pipeline pool: vmImage: ubuntu-latest