Files
pcp/appveyor.yml

29 lines
884 B
YAML
Raw Normal View History

2015-04-23 19:56:42 +02:00
environment:
global:
CYG_ROOT: C:\cygwin
CYG_BASH: C:\cygwin\bin\bash
os: unstable
platform:
- Win32
test: off
init:
- git config --global core.autocrlf input
install:
- '%CYG_ROOT%/bin/bash -lc "git clone https://github.com/jedisct1/libsodium /tmp/libsodium"'
2015-04-23 20:10:31 +02:00
- '%CYG_ROOT%/bin/bash -lc "cd /tmp/libsodium && ./autogen.sh"'
2015-04-23 19:56:42 +02:00
- '%CYG_ROOT%/bin/bash -lc "cd /tmp/libsodium && ./configure --prefix=/usr"'
- '%CYG_ROOT%/bin/bash -lc "cd /tmp/libsodium && make"'
- '%CYG_ROOT%/bin/bash -lc "cd /tmp/libsodium && make install"'
build_script:
- '%CYG_BASH% -lc "cd $APPVEYOR_BUILD_FOLDER; exec 0</dev/null; ./autogen.sh"'
- '%CYG_BASH% -lc "cd $APPVEYOR_BUILD_FOLDER; exec 0</dev/null; ./configure"'
- '%CYG_BASH% -lc "cd $APPVEYOR_BUILD_FOLDER; exec 0</dev/null; cat config.log"'
- '%CYG_BASH% -lc "cd $APPVEYOR_BUILD_FOLDER; exec 0</dev/null; make"'