From 1371f700c5d32abee23e30ca3763ea6692726bd8 Mon Sep 17 00:00:00 2001 From: Akmal <115947276+akmal420@users.noreply.github.com> Date: Sun, 5 Mar 2023 16:07:37 +0530 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..51f105135 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,24 @@ + +--- +pool: + name: "Azure Pipelines" + vmImage: 'ubuntu-latest' + +trigger: + - main + +stages: + - stage: BuildStage + displayName: CI + jobs: + - job: mavenjob + displayName: maven + steps: + - task: Maven@3 + inputs: + mavenPomFile: 'pom.xml' + goals: 'package' + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' + jdkVersionOption: '1.17' +