forked from istopwg/ippsample
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.appveyor.yml
34 lines (28 loc) · 1.08 KB
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
version: "{build}"
image: Visual Studio 2017
# Uncomment to debug via RDP
# init:
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
#
# on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
install:
# Install a self-signed certificate
- ps: |
$selfsigncert = New-SelfSignedCertificate `
-Subject 'CN=IEEE INDUSTRY STANDARDS AND TECHNOLOGY ORGANIZATION' `
-KeyAlgorithm RSA -KeyLength 2048 -Type CodeSigningCert `
-CertStoreLocation Cert:\CurrentUser\My
# Install zlib dependency
- ps: nuget restore vcnet\ippsample.sln
build_script:
- ps: msbuild.exe vcnet\ippsample.sln /p:Configuration=Release /p:Platform=x64 /p:PlatformToolset=v140
test_script:
- .\vcnet\x64\Release\ippfind.exe --help
- .\vcnet\x64\Release\ipptool.exe --version
- .\vcnet\x64\Release\ippserver.exe --help
artifacts:
- path: '**\*.exe'
name: Binaries
- path: '**\*.dll'
name: Libs