From 7fb1769d14ad5b7209169cb3ee91831030baf4c9 Mon Sep 17 00:00:00 2001 From: David Barbet Date: Mon, 23 Sep 2024 13:57:37 -0700 Subject: [PATCH 1/3] Add env var for signing debug info --- azure-pipelines/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines/build.yml b/azure-pipelines/build.yml index e1a156d5f..c0f2ba2b4 100644 --- a/azure-pipelines/build.yml +++ b/azure-pipelines/build.yml @@ -51,6 +51,7 @@ jobs: displayName: 'Build VSIXs' env: SignType: $(signType) + XSIGN_ARGS: --debug - ${{ if eq(parameters.isOfficial, true) }}: - script: gulp signVsix From 4c3da4883a778cfad1516f720eb75fd2969eb6d9 Mon Sep 17 00:00:00 2001 From: David Barbet Date: Mon, 23 Sep 2024 14:00:00 -0700 Subject: [PATCH 2/3] Use python version --- azure-pipelines/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/azure-pipelines/build.yml b/azure-pipelines/build.yml index c0f2ba2b4..00c4a24ff 100644 --- a/azure-pipelines/build.yml +++ b/azure-pipelines/build.yml @@ -28,6 +28,11 @@ jobs: parameters: versionNumberOverride: ${{ parameters.versionNumberOverride }} + - task: UsePythonVersion@0 + displayName: 'Use Python 3.11.x' + inputs: + versionSpec: 3.11.x + # If we're in an official build, install the signing plugin - ${{ if eq(parameters.isOfficial, true) }}: - task: MicroBuildSigningPlugin@4 From a8c65d57d8d615010325c13ad7c5232725b67d7e Mon Sep 17 00:00:00 2001 From: David Barbet Date: Mon, 23 Sep 2024 14:20:56 -0700 Subject: [PATCH 3/3] don't specify patch version --- azure-pipelines/build.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/azure-pipelines/build.yml b/azure-pipelines/build.yml index 00c4a24ff..606ca3afb 100644 --- a/azure-pipelines/build.yml +++ b/azure-pipelines/build.yml @@ -29,9 +29,9 @@ jobs: versionNumberOverride: ${{ parameters.versionNumberOverride }} - task: UsePythonVersion@0 - displayName: 'Use Python 3.11.x' + displayName: 'Use Python 3.11' inputs: - versionSpec: 3.11.x + versionSpec: 3.11 # If we're in an official build, install the signing plugin - ${{ if eq(parameters.isOfficial, true) }}: @@ -56,7 +56,6 @@ jobs: displayName: 'Build VSIXs' env: SignType: $(signType) - XSIGN_ARGS: --debug - ${{ if eq(parameters.isOfficial, true) }}: - script: gulp signVsix