-
Notifications
You must be signed in to change notification settings - Fork 18
/
appveyor.yml
45 lines (38 loc) · 1.97 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
35
36
37
38
39
40
41
42
43
44
45
environment:
LEATHERMAN_VERSION: 1.4.0
matrix:
- shared: OFF
init:
- |
choco install -y mingw-w64 -Version 5.2.0 -source https://www.myget.org/F/puppetlabs
choco install -y cmake -Version 3.2.2 -source https://www.myget.org/F/puppetlabs
choco install -y gettext -Version 0.19.6 -source https://www.myget.org/F/puppetlabs
choco install -y pl-toolchain-x64 -Version 2015.12.01.1 -source https://www.myget.org/F/puppetlabs
choco install -y pl-boost-x64 -Version 1.58.0.2 -source https://www.myget.org/F/puppetlabs
choco install -y pl-openssl-x64 -Version 1.0.24.1 -source https://www.myget.org/F/puppetlabs
choco install -y pl-curl-x64 -Version 7.46.0.1 -source https://www.myget.org/F/puppetlabs
install:
- ps: |
wget "https://github.com/puppetlabs/leatherman/releases/download/$env:LEATHERMAN_VERSION/leatherman.7z" -OutFile "$pwd\leatherman.7z"
7z.exe x leatherman.7z -oC:\tools | FIND /V "ing "
# Minimize environment polution; previously we were linking against the wrong OpenSSL DLLs.
- SET PATH=C:\tools\pl-build-tools\bin;C:\tools\mingw64\bin;C:\ProgramData\chocolatey\bin;C:\Program Files\7-Zip;C:\Windows\system32;C:\Windows
build_script:
- ps: cmake -G "MinGW Makefiles" -DCMAKE_TOOLCHAIN_FILE="C:\tools\pl-build-tools\pl-build-toolchain.cmake" -DCMAKE_PREFIX_PATH="C:\tools\leatherman" -DCMAKE_INSTALL_PREFIX=C:\tools\libwhereami -DBOOST_STATIC=ON -DBUILD_SHARED_LIBS="$env:shared" .
- ps: mingw32-make -j2
test_script:
- ps: ctest -V 2>&1 | %{ if ($_ -is [System.Management.Automation.ErrorRecord]) { $_ | c++filt } else { $_ } }
- ps: mingw32-make install
- ps: 7z.exe a -t7z libwhereami.7z C:\tools\libwhereami\
artifacts:
- path: libwhereami.7z
name: libwhereami.7z
deploy:
description: libwhereami build from AppVeyor
provider: GitHub
auth_token:
secure: AtG3VwGpicTZPMnxvOONtTsbgwZ4Ocwvb3qdyBqU0/iaeLvf6YV2aZ6Ppc+DcN8o
artifact: libwhereami.7z
on:
appveyor_repo_tag: true
shared: OFF