From 82d4bf7979602915b9d61728443c28e7259b841e Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Tue, 8 Apr 2025 16:08:41 -0400 Subject: [PATCH 1/2] ci: fixes another instance of the wrong version of dotnet being used for hidi Signed-off-by: Vincent Biret --- .azure-pipelines/generation-templates/capture-openapi.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.azure-pipelines/generation-templates/capture-openapi.yml b/.azure-pipelines/generation-templates/capture-openapi.yml index cdd626bad..0cfe9d153 100644 --- a/.azure-pipelines/generation-templates/capture-openapi.yml +++ b/.azure-pipelines/generation-templates/capture-openapi.yml @@ -61,7 +61,11 @@ jobs: persistCredentials: true - template: checkout-metadata.yml + + # required for the hidi installation validation - template: use-dotnet-sdk.yml + parameters: + version: '9.x' - pwsh: dotnet tool install --global Microsoft.OpenApi.Hidi displayName: install hidi From 3a6147e364d4f24767769b7bc224ff1e9924f437 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Wed, 9 Apr 2025 08:36:40 -0400 Subject: [PATCH 2/2] ci: missing net8 for hidi run Signed-off-by: Vincent Biret --- .azure-pipelines/generation-templates/capture-openapi.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.azure-pipelines/generation-templates/capture-openapi.yml b/.azure-pipelines/generation-templates/capture-openapi.yml index 0cfe9d153..fe5ca7476 100644 --- a/.azure-pipelines/generation-templates/capture-openapi.yml +++ b/.azure-pipelines/generation-templates/capture-openapi.yml @@ -62,6 +62,11 @@ jobs: - template: checkout-metadata.yml + # required for the hidi to run + - template: use-dotnet-sdk.yml + parameters: + version: '8.x' + # required for the hidi installation validation - template: use-dotnet-sdk.yml parameters: