kdc: Provide flag to hint to KDC that this is a FAST key lookup
[heimdal.git] / appveyor.yml
blobd6aa61e3e0fa185b2d864445610a7f475c5907c3
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   # HACK -- pacman installation in Appveyor seems broken
9   # Taken from https://github.com/johnkerl/miller/blob/master/appveyor.yml
10   - set PATH=C:\msys64\usr\bin;%PATH%
11   - bash -lc "curl -Lo pacman-5.2.1-6-x86_64.pkg.tar.xz.sig http://repo.msys2.org/msys/x86_64/pacman-5.2.1-6-x86_64.pkg.tar.xz.sig"
12   - bash -lc "curl -Lo pacman-5.2.1-6-x86_64.pkg.tar.xz http://repo.msys2.org/msys/x86_64/pacman-5.2.1-6-x86_64.pkg.tar.xz"
13   - bash -lc "curl -Lo zstd-1.4.4-2-x86_64.pkg.tar.xz.sig http://repo.msys2.org/msys/x86_64/zstd-1.4.4-2-x86_64.pkg.tar.xz.sig"
14   - bash -lc "curl -Lo zstd-1.4.4-2-x86_64.pkg.tar.xz http://repo.msys2.org/msys/x86_64/zstd-1.4.4-2-x86_64.pkg.tar.xz"
15   - bash -lc "curl -Lo autoconf-2.69-5-any.pkg.tar.xz.sig http://repo.msys2.org/msys/x86_64/autoconf-2.69-5-any.pkg.tar.xz.sig"
16   - bash -lc "curl -Lo autoconf-2.69-5-any.pkg.tar.xz http://repo.msys2.org/msys/x86_64/autoconf-2.69-5-any.pkg.tar.xz"
17   - bash -lc "curl -Lo automake1.16-1.16.2-2-any.pkg.tar.zst.sig http://repo.msys2.org/msys/x86_64/automake1.16-1.16.2-2-any.pkg.tar.zst.sig"
18   - bash -lc "curl -Lo automake1.16-1.16.2-2-any.pkg.tar.zst http://repo.msys2.org/msys/x86_64/automake1.16-1.16.2-2-any.pkg.tar.zst"
19   - bash -lc "curl -Lo bison-3.5-1-x86_64.pkg.tar.xz.sig http://repo.msys2.org/msys/x86_64/bison-3.5-1-x86_64.pkg.tar.xz.sig"
20   - bash -lc "curl -Lo bison-3.5-1-x86_64.pkg.tar.xz http://repo.msys2.org/msys/x86_64/bison-3.5-1-x86_64.pkg.tar.xz"
21   - bash -lc "curl -Lo flex-2.6.4-1-x86_64.pkg.tar.xz.sig http://repo.msys2.org/msys/x86_64/flex-2.6.4-1-x86_64.pkg.tar.xz.sig"
22   - bash -lc "curl -Lo flex-2.6.4-1-x86_64.pkg.tar.xz http://repo.msys2.org/msys/x86_64/flex-2.6.4-1-x86_64.pkg.tar.xz"
23   - bash -lc "curl -Lo perl-5.30.2-1-x86_64.pkg.tar.xz.sig http://repo.msys2.org/msys/x86_64/perl-5.30.2-1-x86_64.pkg.tar.xz.sig"
24   - bash -lc "curl -Lo perl-5.30.2-1-x86_64.pkg.tar.xz http://repo.msys2.org/msys/x86_64/perl-5.30.2-1-x86_64.pkg.tar.xz"
25   - bash -lc "curl -Lo perl-JSON-4.02-1-any.pkg.tar.zst.sig http://repo.msys2.org/msys/x86_64/perl-JSON-4.02-1-any.pkg.tar.zst.sig"
26   - bash -lc "curl -Lo perl-JSON-4.02-1-any.pkg.tar.zst http://repo.msys2.org/msys/x86_64/perl-JSON-4.02-1-any.pkg.tar.zst"
27   - bash -lc "pacman-key --init"
28   - bash -lc "pacman-key --populate msys2"
29   - bash -lc "pwd; ls -l"
30   - bash -lc "pacman-key --verify pacman-5.2.1-6-x86_64.pkg.tar.xz.sig"
31   - bash -lc "pacman --noconfirm -S zstd || pacman --ask 20 -U file://$PWD/zstd-1.4.4-2-x86_64.pkg.tar.xz"
32     #- bash -lc "pacman --ask 20 -U file://$PWD/pacman-5.2.1-6-x86_64.pkg.tar.xz"
33     #- bash -lc "pacman-key --populate zstd"
34     #- bash -lc "pacman-key --verify zstd-1.4.4-2-x86_64.pkg.tar.xz.sig"
35     #- bash -lc "pacman --ask 20 -U file://$PWD/zstd-1.4.4-2-x86_64.pkg.tar.xz"
36   - bash -lc "pacman --noconfirm -S autoconf || pacman --ask 20 -U file://$PWD/autoconf-2.69-5-any.pkg.tar.xz.sig"
37   - bash -lc "pacman --noconfirm -S automake || pacman --ask 20 -U file://$PWD/automake1.16-1.16.2-2-any.pkg.tar.zst"
38   - bash -lc "pacman --noconfirm -S flex || pacman --ask 20 -U file://$PWD/flex-2.6.4-1-x86_64.pkg.tar.xz"
39   - bash -lc "pacman --noconfirm -S bison || pacman --ask 20 -U file://$PWD/bison-3.5-1-x86_64.pkg.tar.xz"
40   - bash -lc "pacman --noconfirm -S perl || pacman --ask 20 -U file://$PWD/perl-5.30.2-1-x86_64.pkg.tar.xz"
41   - bash -lc "pacman --noconfirm -S perl-JSON || pacman --ask 20 -U file://$PWD/perl-JSON-4.02-1-any.pkg.tar.zst"
43 build_script:
44   - set PSDKDir=C:\Program Files\Microsoft SDKs\Windows\v7.1
45   - call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.Cmd" /xp /x64 /Release
46   - set WIXDIR="c:\Program Files (x86)\Windows Installer XML v3.5"
47   # We're not doing any codesigning in the Appveyor build yet.
48   - SET CODESIGN_PKT=0000000000000000
49   - set PATH=%PATH%;C:\Python26;C:\Perl64\bin;C:\tools\cygwin\bin;C:\Program Files (x86)\HTML Help Workshop
50   - set PATH=%PATH%;C:/msys64/usr/bin
51   - set PATH=%PATH%;C:\program files (x86)\windows installer xml v3.5\bin;C:\cygwin\bin
52   - set dbg__type=Debug
53   - title Heimdal Build %CPU% %dbg__type%
54   - echo PATH=%PATH%
55   - C:\msys64\usr\bin\bash -lc "cp /c/Windows/System32/msvcr100d.dll /c/projects/heimdal"
56   # Newer texinfo has no .exe's, so we have to invoke it as
57   # "perl ...\makeinfo ...".  See doc/NTMakefile.
58   - nmake /f NTMakefile APPVEYOR=1 MAKEINFO=makeinfo NO_INSTALLERS=1
59   - 7z a heimdal.zip C:\projects\heimdal
61 test_script:
62   # Packages are not validated in the Appveyor build, FYI.
63   - nmake /f NTMakefile APPVEYOR=1 MAKEINFO=makeinfo NO_INSTALLERS=1 test
65 artifacts:
66   - path: heimdal-out.zip
67     name: heimdal-out
68   - path: heimdal.zip
69     name: heimdal
71 on_failure:
72   - 7z a heimdal-out.zip C:\projects\heimdal
73   - appveyor PushArtifact heimdal-out.zip
75 # To get RDP access to an appveyor worker for debugging a build, just
76 # uncomment these next two lines and the last two lines too.
77 #init:
78 #  - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
80 # Uncomment this to allow the RDP session to continue after the build
81 # finishes.
83 # There's a delete-me file on the desktop that one should delete when
84 # one is done with the worker.  RDP sessions are capped at 60 minutes as
85 # of this writing.
87 #on_finish:
88 #  - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))