We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10ee428 commit 124d6ffCopy full SHA for 124d6ff
azure-pipelines.yml
@@ -71,9 +71,12 @@ jobs:
71
Write-Host "##[command] **This is a PR build**"
72
73
$commit = Invoke-RestMethod -Uri "https://api.github.com/repos/nanoframework/metadata-processor/commits/$(Build.SourceVersion)" -ContentType "application/json" -Method GET
74
-
+
75
+ # debug output
76
+ echo "=====`r`n$($commit.commit.message)`r`n====="
77
78
# check if should download nanoCLR to run unit tests
- if($commit.commit.message -like "*[use nanoclr preview]*")
79
+ if($commit.commit.message -match "tested against nanoclr buildId \d+")
80
{
81
Write-Host "##[command] **Download preview nanoCLR for unit tests**"
82
$downloadPreview = $true
0 commit comments