Skip to content

Commit

Permalink
Work CI-CD
Browse files Browse the repository at this point in the history
- 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***
  • Loading branch information
josesimoes committed Jul 30, 2024
1 parent 8253f74 commit c6dee33
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -856,6 +856,14 @@ jobs:
parameters:
repoDirectory: '$(Build.SourcesDirectory)/nf-interpreter'

- task: PowerShell@2
displayName: Store CLR DLL revision
name: SetRevision
inputs:
targetType: "inline"
script: |
Write-Host "$("##vso[task.setvariable variable=CLR_REVISION;isOutput=true]")$(REVISION)"
- task: PowerShell@2
displayName: Store package version
inputs:
Expand Down Expand Up @@ -1064,6 +1072,7 @@ jobs:
dependsOn:
- Check_Build_Options
- Check_Code_Style
- Build_WIN32_nanoCLR

pool:
vmImage: "windows-latest"
Expand All @@ -1074,6 +1083,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
Expand Down

0 comments on commit c6dee33

Please sign in to comment.