From 5b4a34ac69eb5eb8d1af6e5192806f0017770e44 Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Wed, 5 Apr 2023 11:25:20 +0500
Subject: [PATCH 01/19] 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 00000000..34edff52
--- /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'
From 010334b92b845107e97339b07438b321d4879dbd Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Wed, 5 Apr 2023 12:14:44 +0500
Subject: [PATCH 02/19] Set up CI with Azure Pipelines
[skip ci]
---
azure-pipelines.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 34edff52..c2dde218 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -7,7 +7,7 @@ trigger:
- master
pool:
- vmImage: ubuntu-latest
+ name: local
steps:
- task: Maven@3
From 7954c9bc3f26bfe8175469a388000c291369ad4d Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Wed, 5 Apr 2023 13:07:16 +0500
Subject: [PATCH 03/19] Update azure-pipelines.yml for Azure Pipelines
---
azure-pipelines.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index c2dde218..41c0f494 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -20,3 +20,9 @@ steps:
publishJUnitResults: true
testResultsFiles: '**/surefire-reports/TEST-*.xml'
goals: 'package'
+- task: DownloadBuildArtifacts@1
+ inputs:
+ buildType: 'current'
+ downloadType: 'single'
+ artifactName: 'test'
+ downloadPath: '$(System.ArtifactsDirectory)'
\ No newline at end of file
From 8281e08b0ebf79455b3c6f859e590324cacb7be9 Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Wed, 5 Apr 2023 13:17:25 +0500
Subject: [PATCH 04/19] Update azure-pipelines.yml for Azure Pipelines
---
azure-pipelines.yml | 6 ------
1 file changed, 6 deletions(-)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 41c0f494..c2dde218 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -20,9 +20,3 @@ steps:
publishJUnitResults: true
testResultsFiles: '**/surefire-reports/TEST-*.xml'
goals: 'package'
-- task: DownloadBuildArtifacts@1
- inputs:
- buildType: 'current'
- downloadType: 'single'
- artifactName: 'test'
- downloadPath: '$(System.ArtifactsDirectory)'
\ No newline at end of file
From 6e336da75847d871d74211e7ad6a8520d3016142 Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Wed, 5 Apr 2023 13:46:14 +0500
Subject: [PATCH 05/19] Update azure-pipelines.yml for Azure Pipelines
---
azure-pipelines.yml | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index c2dde218..dfa9ba5a 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -20,3 +20,12 @@ steps:
publishJUnitResults: true
testResultsFiles: '**/surefire-reports/TEST-*.xml'
goals: 'package'
+- task: CopyFiles@2
+ inputs:
+ Contents: '**'
+ TargetFolder: '$(build.artifactstagingdirectory)'
+- task: PublishBuildArtifacts@1
+ inputs:
+ PathtoPublish: '$(Build.ArtifactStagingDirectory)'
+ ArtifactName: 'drop'
+ publishLocation: 'Container'
From c91f05599bf44479e69c1b00f856b6fbd9ed082e Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Wed, 5 Apr 2023 14:00:59 +0500
Subject: [PATCH 06/19] 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 dfa9ba5a..34b51d73 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -2,7 +2,7 @@
# 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
-
+# test
trigger:
- master
From aca98574b4cef7764d5ef779e7752aa37b3a355d Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Wed, 5 Apr 2023 14:46:52 +0500
Subject: [PATCH 07/19] Update index.jsp
---
webapp/src/main/webapp/index.jsp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/webapp/src/main/webapp/index.jsp b/webapp/src/main/webapp/index.jsp
index ec46df33..e49a06bd 100644
--- a/webapp/src/main/webapp/index.jsp
+++ b/webapp/src/main/webapp/index.jsp
@@ -1,3 +1,3 @@
-
RahulShettyAcademy.com Learning
- Learn QA Automation tools + Devops Tools CI/CD pipelines in course from Scratch
+ I am Talha
+ Faisal and talha is the part of devops team in ahdus
Good Luck and we are almost done with the course.Thankyou
From d3c996a7cb65ab689ed7399f1458e45e1d2894db Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Tue, 18 Apr 2023 14:35:21 +0500
Subject: [PATCH 08/19] Set up CI with Azure Pipelines
[skip ci]
---
azure-pipelines.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 34b51d73..74cd5629 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -7,7 +7,7 @@ trigger:
- master
pool:
- name: local
+ name: Default
steps:
- task: Maven@3
From fde1001652f540d8cc0cfd022f569a4bec3815c1 Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Tue, 18 Apr 2023 16:31:40 +0500
Subject: [PATCH 09/19] Update index.jsp
---
webapp/src/main/webapp/index.jsp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/webapp/src/main/webapp/index.jsp b/webapp/src/main/webapp/index.jsp
index e49a06bd..1380f113 100644
--- a/webapp/src/main/webapp/index.jsp
+++ b/webapp/src/main/webapp/index.jsp
@@ -1,3 +1,3 @@
I am Talha
- Faisal and talha is the part of devops team in ahdus
- Good Luck and we are almost done with the course.Thankyou
+ I am working in Ahdus Technology as a devops enginner
+ This is my First simple project over azure devops using CI/CD Pipeline
From ccf95592579c5ac8ec091eac67a57370322f8973 Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Tue, 18 Apr 2023 16:36:29 +0500
Subject: [PATCH 10/19] Update index.jsp
---
webapp/src/main/webapp/index.jsp | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/webapp/src/main/webapp/index.jsp b/webapp/src/main/webapp/index.jsp
index 1380f113..63670983 100644
--- a/webapp/src/main/webapp/index.jsp
+++ b/webapp/src/main/webapp/index.jsp
@@ -1,3 +1,9 @@
I am Talha
I am working in Ahdus Technology as a devops enginner
This is my First simple project over azure devops using CI/CD Pipeline
+
+
+
+
+
+ AHDUS TECHNOLOGY
From 07cae4cfde7071c2b62e25ede04b4bc345875ad9 Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Wed, 19 Apr 2023 12:58:28 +0500
Subject: [PATCH 11/19] Update index.jsp
---
webapp/src/main/webapp/index.jsp | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/webapp/src/main/webapp/index.jsp b/webapp/src/main/webapp/index.jsp
index 63670983..106e2495 100644
--- a/webapp/src/main/webapp/index.jsp
+++ b/webapp/src/main/webapp/index.jsp
@@ -6,4 +6,5 @@
- AHDUS TECHNOLOGY
+ WELCOME TO AHDUS TECHNOLOGY
+
From d0c63b3c4e5657ea588ddbb0ae983fff3011f6ca Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Wed, 19 Apr 2023 13:05:01 +0500
Subject: [PATCH 12/19] Update index.jsp
---
webapp/src/main/webapp/index.jsp | 1 -
1 file changed, 1 deletion(-)
diff --git a/webapp/src/main/webapp/index.jsp b/webapp/src/main/webapp/index.jsp
index 106e2495..c41a946b 100644
--- a/webapp/src/main/webapp/index.jsp
+++ b/webapp/src/main/webapp/index.jsp
@@ -6,5 +6,4 @@
- WELCOME TO AHDUS TECHNOLOGY
From cef8a1875ff192670f3acfb49f352da001922d22 Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Tue, 18 Jul 2023 12:27:35 +0500
Subject: [PATCH 13/19] Set up CI with Azure Pipelines
[skip ci]
---
azure-pipelines.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 74cd5629..a0d04365 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -7,7 +7,7 @@ trigger:
- master
pool:
- name: Default
+ name: dev
steps:
- task: Maven@3
From 5fe3bf271cc7fe7ec4eaff2e44a56a0bac9914ae Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Tue, 18 Jul 2023 12:30:14 +0500
Subject: [PATCH 14/19] Update azure-pipelines.yml for Azure Pipelines
---
azure-pipelines.yml | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index a0d04365..7b95fbbb 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -7,7 +7,11 @@ trigger:
- master
pool:
- name: dev
+ name: Default
+- task: CopyFiles@2
+ inputs:
+ Contents: '**'
+ TargetFolder:
steps:
- task: Maven@3
From eb8eb295ce11c23b3a1047abc9c6b86df72206b8 Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Tue, 18 Jul 2023 13:10:15 +0500
Subject: [PATCH 15/19] Set up CI with Azure Pipelines
[skip ci]
---
azure-pipelines.yml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 7b95fbbb..3ee58e1e 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -6,6 +6,9 @@
trigger:
- master
+pool:
+ vmImage: 'ubuntu-latest'
+
pool:
name: Default
- task: CopyFiles@2
From c702c41634712a1893f8afee76627b0191339400 Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Tue, 18 Jul 2023 13:12:56 +0500
Subject: [PATCH 16/19] Update azure-pipelines.yml for Azure Pipelines
---
azure-pipelines.yml | 3 ---
1 file changed, 3 deletions(-)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 3ee58e1e..7b95fbbb 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -6,9 +6,6 @@
trigger:
- master
-pool:
- vmImage: 'ubuntu-latest'
-
pool:
name: Default
- task: CopyFiles@2
From 796e6e5b2ed63079f791d63ebf2f2816abd1bff5 Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Tue, 18 Jul 2023 13:45:09 +0500
Subject: [PATCH 17/19] Set up CI with Azure Pipelines
[skip ci]
---
azure-pipelines-1.yml | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
create mode 100644 azure-pipelines-1.yml
diff --git a/azure-pipelines-1.yml b/azure-pipelines-1.yml
new file mode 100644
index 00000000..34edff52
--- /dev/null
+++ b/azure-pipelines-1.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'
From 3b56040a660e6f3d8df2cf5c853685e83e026356 Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Tue, 18 Jul 2023 13:47:34 +0500
Subject: [PATCH 18/19] Update azure-pipelines-1.yml for Azure Pipelines
---
azure-pipelines-1.yml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/azure-pipelines-1.yml b/azure-pipelines-1.yml
index 34edff52..709afbe8 100644
--- a/azure-pipelines-1.yml
+++ b/azure-pipelines-1.yml
@@ -9,6 +9,9 @@ trigger:
pool:
vmImage: ubuntu-latest
+pool:
+ name: Default
+
steps:
- task: Maven@3
inputs:
From 2c7fb6f8c88e9f774d609fa6f9b285940fcdfd82 Mon Sep 17 00:00:00 2001
From: Talha-malik999 <120185958+Talha-malik999@users.noreply.github.com>
Date: Sat, 29 Jul 2023 17:14:18 +0500
Subject: [PATCH 19/19] Create talha
---
talha | 1 +
1 file changed, 1 insertion(+)
create mode 100644 talha
diff --git a/talha b/talha
new file mode 100644
index 00000000..44a9e69b
--- /dev/null
+++ b/talha
@@ -0,0 +1 @@
+this test