Skip to content

Commit 8e785fc

Browse files
committed
Remove legacy version handling from appveyor.yml
1 parent 40832ff commit 8e785fc

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

appveyor.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ environment:
2222
secure: nuzUT+HecXGIi3KaPd/1hgFEZJan/j6+oNbPV75JKjk=
2323
coverity_email:
2424
secure: eGVilNg1Yuq+Xj+SW8r3WCtjnzhoDV0sNJkma4NRq7A=
25-
version : 0.24.0
2625
matrix:
2726
- xunit_runner: xunit.console.x86.exe
2827
Arch: 32
@@ -38,8 +37,6 @@ install:
3837
- ps: |
3938
Write-Host "Commit being built = " -NoNewLine
4039
Write-Host $Env:APPVEYOR_REPO_COMMIT -ForegroundColor "Green"
41-
Write-Host "Current build version = " -NoNewLine
42-
Write-Host $Env:VERSION -ForegroundColor "Green"
4340
Write-Host "Target branch = " -NoNewLine
4441
Write-Host $Env:APPVEYOR_REPO_BRANCH -ForegroundColor "Green"
4542
Write-Host "Is a Pull Request = " -NoNewLine
@@ -50,16 +47,6 @@ install:
5047
Write-Host "Merge commit UTC timestamp = " -NoNewLine
5148
Write-Host $BuildDate -ForegroundColor "Green"
5249
53-
$VersionSuffix = ""
54-
If ($Env:APPVEYOR_REPO_BRANCH -ne "master")
55-
{
56-
$VersionSuffix = "-pre$BuildDate"
57-
}
58-
$Version = "$($Env:VERSION)$($VersionSuffix)"
59-
$Env:ASSEMBLY_INFORMATIONAL_VERSION = $Version
60-
Write-Host "Assembly informational version = " -NoNewLine
61-
Write-Host $Env:ASSEMBLY_INFORMATIONAL_VERSION -ForegroundColor "Green"
62-
6350
$Env:SHOULD_RUN_COVERITY_ANALYSIS = $($Env:APPVEYOR_SCHEDULED_BUILD -eq $True)
6451
Write-Host "Should run Coverity analysis = " -NoNewLine
6552
Write-Host $Env:SHOULD_RUN_COVERITY_ANALYSIS -ForegroundColor "Green"

0 commit comments

Comments
 (0)