i2pd/appveyor.yml

50 lines
1.1 KiB
YAML
Raw Normal View History

2017-06-01 17:05:20 +03:00
version: 2.14.{build}
2015-12-13 03:05:14 +03:00
pull_requests:
do_not_increment_build_number: true
branches:
only:
- openssl
skip_tags: true
os: Visual Studio 2015
shallow_clone: true
clone_depth: 1
environment:
2017-03-18 02:40:39 +03:00
MSYS2_PATH_TYPE: inherit
CHERE_INVOKING: enabled_from_arguments
2015-12-13 03:05:14 +03:00
matrix:
2017-03-18 02:40:39 +03:00
- MSYSTEM: MINGW64
- MSYSTEM: MINGW32
2015-12-13 03:05:14 +03:00
install:
2017-03-18 02:40:39 +03:00
- c:\msys64\usr\bin\bash -lc "pacman --noconfirm -Rns gcc-fortran gcc"
- c:\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu"
2017-03-22 16:49:44 +03:00
2017-03-18 02:40:39 +03:00
- c:\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu"
- if "%MSYSTEM%" == "MINGW64" (
c:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-x86_64-boost mingw-w64-x86_64-miniupnpc"
2015-12-13 03:05:14 +03:00
) else (
2017-03-18 02:40:39 +03:00
c:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-i686-boost mingw-w64-i686-miniupnpc"
2015-12-13 03:05:14 +03:00
)
2017-03-18 02:40:39 +03:00
- if "%MSYSTEM%" == "MINGW64" (
2015-12-13 03:05:14 +03:00
set "bitness=64"
) else (
set "bitness=32"
)
build_script:
- cmd: >-
2017-03-18 02:40:39 +03:00
cd \projects\i2pd
2015-12-13 03:05:14 +03:00
2017-03-18 02:40:39 +03:00
echo MSYSTEM = %MSYSTEM%, bitness = %bitness%
2015-12-13 03:05:14 +03:00
2017-03-18 02:40:39 +03:00
- c:\msys64\usr\bin\bash -lc "make USE_UPNP=yes -j2"
- 7z a -tzip -mx9 -mmt i2pd-mingw-win%bitness%.zip i2pd.exe
2015-12-13 03:05:14 +03:00
test: off
2017-03-18 02:40:39 +03:00
2015-12-13 03:05:14 +03:00
artifacts:
2017-03-18 02:40:39 +03:00
- path: i2pd-mingw-win*.zip