2019-01-16 13:18:27 +01:00
|
|
|
# pre release version:
|
2019-04-29 16:05:43 +02:00
|
|
|
version: 1.0.{build}
|
2017-09-21 13:32:15 +02:00
|
|
|
|
2020-06-04 14:38:16 +02:00
|
|
|
cache:
|
|
|
|
|
2018-03-21 12:52:59 +01:00
|
|
|
#branches:
|
|
|
|
# only:
|
|
|
|
# - master
|
|
|
|
# - dev
|
|
|
|
# - debug
|
2017-09-21 13:32:15 +02:00
|
|
|
|
|
|
|
skip_tags: true
|
|
|
|
|
|
|
|
#image: WMF 5
|
|
|
|
# Test ne build image:
|
2020-08-26 14:28:23 +02:00
|
|
|
image: Visual Studio 2013
|
2017-09-21 13:32:15 +02:00
|
|
|
|
|
|
|
# Install pester module and init the Appveyor support.
|
2018-03-09 14:02:51 +01:00
|
|
|
|
|
|
|
# Enable RDP connection for debugging
|
|
|
|
#init:
|
|
|
|
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
|
|
|
|
2017-09-21 13:32:15 +02:00
|
|
|
install:
|
|
|
|
- ps: Import-Module .\tools\AppVeyor.psm1
|
2018-03-21 12:16:09 +01:00
|
|
|
- ps: Invoke-InstallDependencies
|
2017-09-21 13:32:15 +02:00
|
|
|
|
|
|
|
environment:
|
|
|
|
NuGetToken:
|
|
|
|
secure: 835qfZIkC9mE7QhkYfOZVAdR8rZhPvxG8BO4CbeaelRQOhlqmaSr8G1DWRJzZ/bS
|
|
|
|
CoverallsToken:
|
|
|
|
secure: eTjWqHL48MBr8wp1rSgLrXHdtpfDV/uClacP3svlWJfCvn/zVokpuaMnWM5RoyIY
|
2020-06-04 09:23:55 +02:00
|
|
|
CodeCovToken:
|
|
|
|
secure: LJOvamWIlVORDE7120KcmWVkHxOFYBSN99linyICXXmXLtYm81K/31YeMGiPlgTm
|
2017-09-21 13:32:15 +02:00
|
|
|
|
|
|
|
build: false
|
|
|
|
|
|
|
|
before_build:
|
|
|
|
- ps: Invoke-AppVeyorBumpVersion
|
|
|
|
|
|
|
|
build_script:
|
|
|
|
- ps: Invoke-AppVeyorBuild
|
|
|
|
|
|
|
|
test_script:
|
2020-06-04 14:38:16 +02:00
|
|
|
- ps: |
|
|
|
|
$CodeCoverage = Invoke-AppVeyorTests
|
|
|
|
if ($null -ne $Env:CoverallsToken) {
|
|
|
|
Invoke-CoverageReport -PesterCoverageReport $CodeCoverage
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Write-Warning "No CoverallsToken found. This build seems to be triggered by a PR. Skipping this step..."
|
|
|
|
}
|
|
|
|
$env:PATH = 'C:\msys64\usr\bin;' + $env:PATH
|
|
|
|
Invoke-WebRequest -Uri 'https://codecov.io/bash' -OutFile codecov.sh
|
|
|
|
bash codecov.sh -f "coverage.xml" -t $Env:CodeCovToken
|
2020-06-04 09:23:55 +02:00
|
|
|
#- ps: |
|
|
|
|
# $CodeCoverage = Invoke-AppVeyorTests
|
|
|
|
# if ($null -ne $Env:CoverallsToken) {
|
|
|
|
# Invoke-CoverageReport -PesterCoverageReport $CodeCoverage
|
|
|
|
# }
|
|
|
|
# else {
|
|
|
|
# Write-Warning "No CoverallsToken found. This build seems to be triggered by a PR. Skipping this step..."
|
|
|
|
# }
|
2020-06-04 14:38:16 +02:00
|
|
|
#- ps: |
|
|
|
|
# Invoke-CodeCoveTests
|
|
|
|
# $env:PATH = 'C:\msys64\usr\bin;' + $env:PATH
|
|
|
|
# Invoke-WebRequest -Uri 'https://codecov.io/bash' -OutFile codecov.sh
|
|
|
|
# bash codecov.sh -f "coverage.xml" -t $Env:CodeCovToken
|
2017-09-21 13:32:15 +02:00
|
|
|
|
2017-10-23 10:53:52 +02:00
|
|
|
deploy:
|
|
|
|
#- provider: GitHub
|
|
|
|
# auth_token:
|
|
|
|
# secure: M+bBX5/nKdJB0eViP7xtrLVTwf3vGDUA9N2MMprZp2i+9ZR3CBVcJnSzJWUmalhB
|
|
|
|
# artifact: PSCredentialStore.zip # upload all NuGet packages to release assets
|
|
|
|
# draft: true
|
|
|
|
# prerelease: true
|
|
|
|
# on:
|
|
|
|
# branch: dev
|
2017-12-22 08:10:37 +01:00
|
|
|
- provider: GitHub
|
|
|
|
auth_token:
|
|
|
|
secure: M+bBX5/nKdJB0eViP7xtrLVTwf3vGDUA9N2MMprZp2i+9ZR3CBVcJnSzJWUmalhB
|
2020-06-04 09:23:55 +02:00
|
|
|
artifact: PSCredentialStore.zip # upload all NuGet packages to release assets
|
2017-12-22 08:10:37 +01:00
|
|
|
draft: false
|
2020-01-23 13:06:16 +01:00
|
|
|
prerelease: false
|
2017-12-22 08:10:37 +01:00
|
|
|
on:
|
2020-06-04 09:23:55 +02:00
|
|
|
branch: master # build release on master branch changes
|
2017-10-23 10:53:52 +02:00
|
|
|
|
|
|
|
after_deploy:
|
2017-12-22 08:10:37 +01:00
|
|
|
- ps: Invoke-AppVeyorPSGallery -OnBranch 'master'
|
2018-03-09 14:02:51 +01:00
|
|
|
# Pause build until `lock` on desktop is deleted.
|
|
|
|
#on_finish:
|
|
|
|
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|