# HG changeset patch # User Chris Cannam # Date 1547653290 0 # Node ID b9cddb57a7f419452e6a600e290530b91771b431 # Parent fdaddbb471bf67d5ad6f3182f77454238d1dee0d First cut at AppVeyor CI file diff -r fdaddbb471bf -r b9cddb57a7f4 .appveyor.yml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.appveyor.yml Wed Jan 16 15:41:30 2019 +0000 @@ -0,0 +1,23 @@ + +configuration: + - Release + +platform: + - Win32 + +install: + - ps: '"[hostfingerprints]" | Out-File -Encoding "ASCII" -Append $env:USERPROFILE\mercurial.ini' + - ps: '"code.soundsoftware.ac.uk = 66:ef:e2:0e:e3:55:93:9a:33:aa:2a:e9:fe:be:21:c2:a2:8d:4f:f1" | Out-File -Encoding "ASCII" -Append $env:USERPROFILE\mercurial.ini' + - ps: '"[hostsecurity]" | Out-File -Encoding "ASCII" -Append $env:USERPROFILE\mercurial.ini' + - ps: '"code.soundsoftware.ac.uk = code.soundsoftware.ac.uk:fingerprints=sha256:64:75:f6:47:15:de:b4:51:ea:96:e2:f4:8a:f5:53:a5:11:c8:dd:82:73:5d:bd:54:18:cb:c8:9d:10:37:28:85" | Out-File -Encoding "ASCII" -Append $env:USERPROFILE\mercurial.ini' + +before_build: + - cd .. + - hg clone https://code.soundsoftware.ac.uk/hg/vamp-plugin-sdk + - cd vamp-plugin-sdk + - msbuild /t:Build /p:Configuration=Release /p:Platform=win32 build\VampSDK.sln + - cd ..\vampy + +build: + project: VamPy.sln +