Skip to content

Commit 4c544fc

Browse files
Merge pull request #10213 from microsoft/hanli/fix-eap-pipeline
Remove workaround for pipeline issue
2 parents 8768345 + bbd0348 commit 4c544fc

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.azure-pipelines/sign-for-stable-release.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,10 @@ extends:
8080
inputs:
8181
targetType: inline
8282
script: |
83-
mkdir -p ./artifacts/intellij/
84-
85-
# Download the IntelliJ plugin from storage using SAS token
86-
echo "Downloading IntelliJ plugin from storage..."
87-
curl -L "$(INTELLIJ_PLUGIN_STORAGE_URL)" -o ./artifacts/intellij/azure-toolkit-for-intellij.zip
83+
(cd PluginsAndFeatures/azure-toolkit-for-intellij && ./gradlew clean buildPlugin -s -Papplicationinsights.key=$(INTELLIJ_KEY) -PneedPatchVersion=false -Psources=false -Porg.gradle.configureondemand=false -Porg.gradle.daemon=false -Porg.gradle.unsafe.configuration-cache=false -Porg.gradle.caching=false)
8884
85+
mkdir -p ./artifacts/intellij/
86+
cp ./PluginsAndFeatures/azure-toolkit-for-intellij/build/distributions/*.zip ./artifacts/intellij/azure-toolkit-for-intellij.zip
8987
unzip ./artifacts/intellij/azure-toolkit-for-intellij.zip -d ./artifacts/intellij/folder
9088
rm ./artifacts/intellij/azure-toolkit-for-intellij.zip
9189
- task: UsePythonVersion@0
@@ -144,4 +142,4 @@ extends:
144142
- task: AzureArtifacts.manifest-generator-task.manifest-generator-task.ManifestGeneratorTask@0
145143
displayName: "Manifest Generator "
146144
inputs:
147-
BuildDropPath: $(build.artifactstagingdirectory)/drop
145+
BuildDropPath: $(build.artifactstagingdirectory)/drop

0 commit comments

Comments
 (0)