Merge pull request #203 from sdigit/patch-1
[heimdal.git] / appveyor.yml
blob837eb18d617aacbbc3ef5a310ccc0eb1cbba42f3
2 # This file tells appveyor.com how to build Heimdal on Windows.
3 # Appveyor is a continuous integration (CI) service for github and other
4 # users, and is free for public repositories.
7 install:
8   - C:\msys64\usr\bin\bash -lc "pacman --needed --noconfirm -Sy pacman-mirrors"
9   - C:\msys64\usr\bin\bash -lc "pacman --noconfirm -Sy"
10   - C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S autoconf automake bison flex"
12 build_script:
13   - set PSDKDir=C:\Program Files\Microsoft SDKs\Windows\v7.1
14   - call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.Cmd" %1 %2 /xp
15   - set WIXDIR="c:\Program Files (x86)\Windows Installer XML v3.5"
16   # We're not doing any codesigning in the Appveyor build yet.
17   - SET CODESIGN_PKT=0000000000000000
18   - set PATH=%PATH%;C:\Python26;C:\Perl64\bin;C:\tools\cygwin\bin;C:\Program Files (x86)\HTML Help Workshop
19   - set PATH=%PATH%;C:/msys64/usr/bin
20   - set PATH=%PATH%;C:\program files (x86)\windows installer xml v3.5\bin;C:\cygwin\bin
21   - set dbg__type=Debug
22   - title Heimdal Build %CPU% %dbg__type%
23   - echo PATH=%PATH%
24   # Newer texinfo has no .exe's, so we have to invoke it as
25   # "perl ...\makeinfo ...".  See doc/NTMakefile.
26   - nmake /f NTMakefile APPVEYOR=1 MAKEINFO=makeinfo NO_INSTALLERS=1
27   - 7z a heimdal-out.zip C:\projects\heimdal\out\
29 test_script:
30   # Packages are not validated in the Appveyor build, FYI.
31   - nmake /f NTMakefile APPVEYOR=1 MAKEINFO=makeinfo NO_INSTALLERS=1 test
33 artifacts:
34   - path: heimdal-out.zip
35     name: heimdal-out
37 on_failure:
38   - appveyor PushArtifact heimdal-out.zip
40 # To get RDP access to an appveyor worker for debugging a build, just
41 # uncomment these next two lines and the last two lines too.
42 #init:
43 #  - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
45 # Uncomment this to allow the RDP session to continue after the build
46 # finishes.
48 # There's a delete-me file on the desktop that one should delete when
49 # one is done with the worker.  RDP sessions are capped at 60 minutes as
50 # of this writing.
52 #on_finish:
53 #  - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))