From 0d39cd092edc0b79a9af12bae3ddfc326de515d2 Mon Sep 17 00:00:00 2001 From: ghulk123 <104766246+ghulk123@users.noreply.github.com> Date: Sun, 12 Feb 2023 10:29:46 +0530 Subject: [PATCH 1/3] Create newfile --- newfile | 1 + 1 file changed, 1 insertion(+) create mode 100644 newfile diff --git a/newfile b/newfile new file mode 100644 index 0000000..20adb7d --- /dev/null +++ b/newfile @@ -0,0 +1 @@ +new file - I am changing in From ff763389b14551e6a6237635e9feaa0b24ef4cf8 Mon Sep 17 00:00:00 2001 From: ghulk123 <104766246+ghulk123@users.noreply.github.com> Date: Sun, 12 Feb 2023 10:33:58 +0530 Subject: [PATCH 2/3] Create new --- new | 1 + 1 file changed, 1 insertion(+) create mode 100644 new diff --git a/new b/new new file mode 100644 index 0000000..45b983b --- /dev/null +++ b/new @@ -0,0 +1 @@ +hi From a251834f157e6264bd62a9dfd0b8f09a4d55b2a5 Mon Sep 17 00:00:00 2001 From: ghulk123 <104766246+ghulk123@users.noreply.github.com> Date: Tue, 4 Apr 2023 13:05:57 +0530 Subject: [PATCH 3/3] Set up CI with Azure Pipelines [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 0000000..34edff5 --- /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.8' + jdkArchitectureOption: 'x64' + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' + goals: 'package'