libressl-portable/appveyor.yml

45 lines
1.3 KiB
YAML
Raw Normal View History

2018-12-16 02:46:20 -06:00
image:
- Visual Studio 2015
#- Visual Studio 2017
2018-12-16 02:46:20 -06:00
2018-03-19 18:29:00 -07:00
environment:
PATH: C:\msys64\usr\bin;C:\msys64\mingw64\bin;C:\Windows\System32;C:\Windows;%PATH%
2018-11-13 13:42:37 -06:00
2018-03-19 18:29:00 -07:00
matrix:
2018-12-16 02:46:20 -06:00
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
GENERATOR: Visual Studio 14 2015 Win64
2018-03-19 18:29:00 -07:00
CONFIG: Release
SHARED_LIBS: ON
2018-12-16 02:46:20 -06:00
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
GENERATOR: Visual Studio 14 2015
2018-03-19 18:29:00 -07:00
CONFIG: Release
SHARED_LIBS: ON
2018-12-16 02:46:20 -06:00
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
GENERATOR: Visual Studio 14 2015 Win64
2018-03-19 18:29:00 -07:00
CONFIG: Release
SHARED_LIBS: OFF
2018-12-16 02:46:20 -06:00
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
GENERATOR: Visual Studio 14 2015
CONFIG: Release
2018-03-20 09:51:24 -07:00
SHARED_LIBS: OFF
2018-03-19 18:29:00 -07:00
init:
2018-12-16 02:37:02 -06:00
# update mysy2
2018-03-19 18:29:00 -07:00
- C:\msys64\usr\bin\bash -lc "pacman --needed --noconfirm -Sy pacman-mirrors"
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -Sy"
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S autoconf perl"
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S git"
2018-11-13 13:42:37 -06:00
2018-03-19 18:29:00 -07:00
before_build:
- bash autogen.sh
- mkdir build
- cd build
2018-03-21 11:33:38 -07:00
- cmake .. -G "%GENERATOR%" -DBUILD_SHARED_LIBS=%SHARED_LIBS%
2018-03-19 18:29:00 -07:00
build_script:
- cmake --build . --config %CONFIG%
test_script:
# TODO: Determine how to run ssltest on AppVeyor
- ctest -C %CONFIG% --timeout 150 --output-on-failure -E ssltest