From 6bbddb640c6ec2cc2ff1a678928d340d95a22d23 Mon Sep 17 00:00:00 2001 From: Joyeeta Pal Date: Wed, 23 Oct 2024 23:06:12 +0530 Subject: [PATCH 01/13] Update azure-maven-publish-1espt.yml for Azure Pipelines --- android/azure-maven-publish-1espt.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/azure-maven-publish-1espt.yml b/android/azure-maven-publish-1espt.yml index 7d02071399..6436d528a2 100644 --- a/android/azure-maven-publish-1espt.yml +++ b/android/azure-maven-publish-1espt.yml @@ -25,7 +25,7 @@ extends: outputs: - output: pipelineArtifact displayName: 'Publish library artifact to pipeline' - targetPath: '$(Build.ArtifactStagingDirectory)' + targetPath: 'android' artifactName: 'aar' publishLocation: 'pipeline' steps: From 9e6bf356dbb803a686dc8653fd1ba3fa4532e733 Mon Sep 17 00:00:00 2001 From: Joyeeta Pal Date: Thu, 24 Oct 2024 00:02:47 +0530 Subject: [PATCH 02/13] Update azure-maven-publish-1espt.yml for Azure Pipelines --- android/azure-maven-publish-1espt.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/android/azure-maven-publish-1espt.yml b/android/azure-maven-publish-1espt.yml index 6436d528a2..e538b1591f 100644 --- a/android/azure-maven-publish-1espt.yml +++ b/android/azure-maven-publish-1espt.yml @@ -25,7 +25,7 @@ extends: outputs: - output: pipelineArtifact displayName: 'Publish library artifact to pipeline' - targetPath: 'android' + targetPath: 'android/build/artifacts/com/microsoft/design' artifactName: 'aar' publishLocation: 'pipeline' steps: @@ -39,7 +39,8 @@ extends: script: | # Write your commands here bash -c "echo '$GPG_KEY_CONTENT' | base64 -d > '$SIGNING_SECRET_KEY_RING_FILE'" - ls + tree -d + | bash -c "echo '$(Build.ArtifactStagingDirectory)" - task: Gradle@3 inputs: gradleWrapperFile: 'android/gradlew' From e43acb498767060e72222f3d534011b3216ab5bb Mon Sep 17 00:00:00 2001 From: Joyeeta Pal Date: Tue, 29 Oct 2024 12:40:07 +0530 Subject: [PATCH 03/13] Update azure-maven-publish-1espt.yml for Azure Pipelines --- android/azure-maven-publish-1espt.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/android/azure-maven-publish-1espt.yml b/android/azure-maven-publish-1espt.yml index e538b1591f..26e255c25d 100644 --- a/android/azure-maven-publish-1espt.yml +++ b/android/azure-maven-publish-1espt.yml @@ -39,8 +39,7 @@ extends: script: | # Write your commands here bash -c "echo '$GPG_KEY_CONTENT' | base64 -d > '$SIGNING_SECRET_KEY_RING_FILE'" - tree -d - | bash -c "echo '$(Build.ArtifactStagingDirectory)" + ls - task: Gradle@3 inputs: gradleWrapperFile: 'android/gradlew' From 3c6c9355c43181126fdf444849bd6f19904a3826 Mon Sep 17 00:00:00 2001 From: Joyeeta Pal Date: Fri, 29 Nov 2024 13:55:53 +0530 Subject: [PATCH 04/13] Update azure-maven-publish-1espt.yml for Azure Pipelines --- android/azure-maven-publish-1espt.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/android/azure-maven-publish-1espt.yml b/android/azure-maven-publish-1espt.yml index 26e255c25d..89e3c2feb2 100644 --- a/android/azure-maven-publish-1espt.yml +++ b/android/azure-maven-publish-1espt.yml @@ -40,6 +40,15 @@ extends: # Write your commands here bash -c "echo '$GPG_KEY_CONTENT' | base64 -d > '$SIGNING_SECRET_KEY_RING_FILE'" ls + - task: Bash@3 + displayName: "Checking the directory structure before build" + inputs: + targetType: "inline" + script: | + # Write your commands here + cd .. + cd .. + ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/' - task: Gradle@3 inputs: gradleWrapperFile: 'android/gradlew' @@ -51,6 +60,15 @@ extends: jdkVersionOption: "$(jdkVersion)" sonarQubeRunAnalysis: false spotBugsAnalysis: false + - task: Bash@3 + displayName: "Checking the directory structure after build" + inputs: + targetType: "inline" + script: | + # Write your commands here + cd .. + cd .. + ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/' - task: Gradle@2 displayName: Gradle publish inputs: From d9df2fd8cd861a62fb33401cb06ad96ef1fab125 Mon Sep 17 00:00:00 2001 From: Joyeeta Pal Date: Fri, 29 Nov 2024 17:23:35 +0530 Subject: [PATCH 05/13] Update azure-maven-publish-1espt.yml for Azure Pipelines --- android/azure-maven-publish-1espt.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/android/azure-maven-publish-1espt.yml b/android/azure-maven-publish-1espt.yml index 89e3c2feb2..b8e782ad8f 100644 --- a/android/azure-maven-publish-1espt.yml +++ b/android/azure-maven-publish-1espt.yml @@ -47,7 +47,6 @@ extends: script: | # Write your commands here cd .. - cd .. ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/' - task: Gradle@3 inputs: @@ -67,7 +66,6 @@ extends: script: | # Write your commands here cd .. - cd .. ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/' - task: Gradle@2 displayName: Gradle publish From 970173b7c24b225944471c1c4958da50325e0daa Mon Sep 17 00:00:00 2001 From: Joyeeta Pal Date: Fri, 29 Nov 2024 17:26:18 +0530 Subject: [PATCH 06/13] Update azure-maven-publish.yml for Azure Pipelines --- android/azure-maven-publish.yml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/android/azure-maven-publish.yml b/android/azure-maven-publish.yml index b83f55f51f..818bed8506 100644 --- a/android/azure-maven-publish.yml +++ b/android/azure-maven-publish.yml @@ -18,6 +18,14 @@ jobs: # Write your commands here sudo bash -c "echo '$GPG_KEY_CONTENT' | base64 -d > '$SIGNING_SECRET_KEY_RING_FILE'" ls + - task: Bash@3 + displayName: "Checking the directory structure before build" + inputs: + targetType: "inline" + script: | + # Write your commands here + cd .. + ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/' - task: Gradle@3 inputs: gradleWrapperFile: "android/gradlew" @@ -28,7 +36,16 @@ jobs: javaHomeOption: "JDKVersion" jdkVersionOption: "$(jdkVersion)" sonarQubeRunAnalysis: false - spotBugsAnalysis: false + spotBugsAnalysis: false + + - task: Bash@3 + displayName: "Checking the directory structure before build" + inputs: + targetType: "inline" + script: | + # Write your commands here + cd .. + ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/' - task: Gradle@2 displayName: Gradle publish inputs: From 7ea7520eb4ddbd125942b4de44a9941ec9501ad4 Mon Sep 17 00:00:00 2001 From: Joyeeta Pal Date: Fri, 29 Nov 2024 17:39:54 +0530 Subject: [PATCH 07/13] Update azure-maven-publish-1espt.yml for Azure Pipelines --- android/azure-maven-publish-1espt.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/azure-maven-publish-1espt.yml b/android/azure-maven-publish-1espt.yml index b8e782ad8f..ee919fe8a1 100644 --- a/android/azure-maven-publish-1espt.yml +++ b/android/azure-maven-publish-1espt.yml @@ -25,7 +25,7 @@ extends: outputs: - output: pipelineArtifact displayName: 'Publish library artifact to pipeline' - targetPath: 'android/build/artifacts/com/microsoft/design' + targetPath: 'android/library/build/artifacts/com/microsoft/design' artifactName: 'aar' publishLocation: 'pipeline' steps: From b624bc01a4fab08955c8cdb5fea9c2e35930fadf Mon Sep 17 00:00:00 2001 From: Joyeeta Pal Date: Fri, 29 Nov 2024 18:16:46 +0530 Subject: [PATCH 08/13] Update azure-maven-publish-1espt.yml for Azure Pipelines --- android/azure-maven-publish-1espt.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/azure-maven-publish-1espt.yml b/android/azure-maven-publish-1espt.yml index ee919fe8a1..450f17987d 100644 --- a/android/azure-maven-publish-1espt.yml +++ b/android/azure-maven-publish-1espt.yml @@ -25,7 +25,7 @@ extends: outputs: - output: pipelineArtifact displayName: 'Publish library artifact to pipeline' - targetPath: 'android/library/build/artifacts/com/microsoft/design' + targetPath: '$(build.sourcesdirectory)/build/artifacts/com/microsoft/design' artifactName: 'aar' publishLocation: 'pipeline' steps: From f5abb379bb8a337c78eef663b56f11763d94334d Mon Sep 17 00:00:00 2001 From: Joyeeta Pal Date: Fri, 29 Nov 2024 18:44:43 +0530 Subject: [PATCH 09/13] Update azure-maven-publish-1espt.yml for Azure Pipelines --- android/azure-maven-publish-1espt.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/azure-maven-publish-1espt.yml b/android/azure-maven-publish-1espt.yml index 450f17987d..ee919fe8a1 100644 --- a/android/azure-maven-publish-1espt.yml +++ b/android/azure-maven-publish-1espt.yml @@ -25,7 +25,7 @@ extends: outputs: - output: pipelineArtifact displayName: 'Publish library artifact to pipeline' - targetPath: '$(build.sourcesdirectory)/build/artifacts/com/microsoft/design' + targetPath: 'android/library/build/artifacts/com/microsoft/design' artifactName: 'aar' publishLocation: 'pipeline' steps: From 20661c646be7f45e9306604a427aa6dbf38a5725 Mon Sep 17 00:00:00 2001 From: Joyeeta Pal Date: Wed, 18 Dec 2024 11:50:38 +0530 Subject: [PATCH 10/13] Update azure-maven-publish-1espt.yml for Azure Pipelines --- android/azure-maven-publish-1espt.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/android/azure-maven-publish-1espt.yml b/android/azure-maven-publish-1espt.yml index ee919fe8a1..6ad9d9aa7b 100644 --- a/android/azure-maven-publish-1espt.yml +++ b/android/azure-maven-publish-1espt.yml @@ -40,14 +40,6 @@ extends: # Write your commands here bash -c "echo '$GPG_KEY_CONTENT' | base64 -d > '$SIGNING_SECRET_KEY_RING_FILE'" ls - - task: Bash@3 - displayName: "Checking the directory structure before build" - inputs: - targetType: "inline" - script: | - # Write your commands here - cd .. - ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/' - task: Gradle@3 inputs: gradleWrapperFile: 'android/gradlew' @@ -59,14 +51,6 @@ extends: jdkVersionOption: "$(jdkVersion)" sonarQubeRunAnalysis: false spotBugsAnalysis: false - - task: Bash@3 - displayName: "Checking the directory structure after build" - inputs: - targetType: "inline" - script: | - # Write your commands here - cd .. - ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/' - task: Gradle@2 displayName: Gradle publish inputs: From 09fd196dc603704306e0ad3630db50a618c3e0b1 Mon Sep 17 00:00:00 2001 From: Joyeeta Pal Date: Wed, 18 Dec 2024 11:52:01 +0530 Subject: [PATCH 11/13] Update azure-maven-publish.yml --- android/azure-maven-publish.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/android/azure-maven-publish.yml b/android/azure-maven-publish.yml index 818bed8506..ee9e0fe3e4 100644 --- a/android/azure-maven-publish.yml +++ b/android/azure-maven-publish.yml @@ -18,14 +18,6 @@ jobs: # Write your commands here sudo bash -c "echo '$GPG_KEY_CONTENT' | base64 -d > '$SIGNING_SECRET_KEY_RING_FILE'" ls - - task: Bash@3 - displayName: "Checking the directory structure before build" - inputs: - targetType: "inline" - script: | - # Write your commands here - cd .. - ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/' - task: Gradle@3 inputs: gradleWrapperFile: "android/gradlew" @@ -38,14 +30,6 @@ jobs: sonarQubeRunAnalysis: false spotBugsAnalysis: false - - task: Bash@3 - displayName: "Checking the directory structure before build" - inputs: - targetType: "inline" - script: | - # Write your commands here - cd .. - ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/' - task: Gradle@2 displayName: Gradle publish inputs: From 776a45356cb4c5147d3b36b93ee0b35fb4bd8705 Mon Sep 17 00:00:00 2001 From: Joyeeta Pal Date: Wed, 18 Dec 2024 11:52:32 +0530 Subject: [PATCH 12/13] Update azure-maven-publish.yml --- android/azure-maven-publish.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/android/azure-maven-publish.yml b/android/azure-maven-publish.yml index ee9e0fe3e4..b9bdd9927a 100644 --- a/android/azure-maven-publish.yml +++ b/android/azure-maven-publish.yml @@ -29,7 +29,6 @@ jobs: jdkVersionOption: "$(jdkVersion)" sonarQubeRunAnalysis: false spotBugsAnalysis: false - - task: Gradle@2 displayName: Gradle publish inputs: From db4cd2c3a774b2a0883ac69ca043089d11b742a3 Mon Sep 17 00:00:00 2001 From: Joyeeta Pal Date: Wed, 18 Dec 2024 11:53:07 +0530 Subject: [PATCH 13/13] Update azure-maven-publish.yml --- android/azure-maven-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/azure-maven-publish.yml b/android/azure-maven-publish.yml index b9bdd9927a..edf67ad0ab 100644 --- a/android/azure-maven-publish.yml +++ b/android/azure-maven-publish.yml @@ -28,7 +28,7 @@ jobs: javaHomeOption: "JDKVersion" jdkVersionOption: "$(jdkVersion)" sonarQubeRunAnalysis: false - spotBugsAnalysis: false + spotBugsAnalysis: false - task: Gradle@2 displayName: Gradle publish inputs: