From 288fd6fafbd62b341cdfcf535adcbf9e5348ba1d Mon Sep 17 00:00:00 2001 From: josesimoes Date: Tue, 30 Jul 2024 13:43:31 +0100 Subject: [PATCH] Work CI-CD - CLR version is now passed to CLI job so there is a version numbering consistency between the DLL published to CloudSmith repo and the one distributed with the CLR nupkg. ***NO_CI*** --- azure-pipelines.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d28a6b92e1..d48eb8b175 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -856,6 +856,11 @@ jobs: parameters: repoDirectory: '$(Build.SourcesDirectory)/nf-interpreter' + - script: | + Write-Host "$("##vso[task.setvariable variable=CLR_REVISION;isOutput=true]")$(REVISION)" + name: SetRevision + displayName: Store CLR DLL revision + - task: PowerShell@2 displayName: Store package version inputs: @@ -1064,6 +1069,7 @@ jobs: dependsOn: - Check_Build_Options - Check_Code_Style + - Build_WIN32_nanoCLR pool: vmImage: "windows-latest" @@ -1074,6 +1080,8 @@ jobs: value: true - name: LITTLEFS_PATH value: "D:/a/1/s/littlefs" + - name: REVISION + value: $[dependencies.Build_WIN32_nanoCLR.outputs['SetRevision.CLR_REVISION']] steps: - checkout: self