utf8proc

A clean C library for processing UTF-8 Unicode data
git clone https://git.sinitax.com/juliastrings/utf8proc
Log | Files | Refs | README | LICENSE | sfeed.txt

commit f67f1a72f7bbaac8dbf08a183193ac82641cd34b
parent 1e411777c592a1ccd99458211df7d2013289bbf9
Author: Steven G. Johnson <stevenj@mit.edu>
Date:   Fri, 30 Oct 2015 12:48:43 -0400

Merge pull request #57 from petercolberg/master

Fix MingW build test
Diffstat:
Mappveyor.yml | 24+++++++++++++++---------
1 file changed, 15 insertions(+), 9 deletions(-)

diff --git a/appveyor.yml b/appveyor.yml @@ -22,15 +22,21 @@ build_script: - cd ..\msvc_shared - cmake .. -DBUILD_SHARED_LIBS=ON - cmake --build . + - set PATH=C:\MinGW\bin;%PATH% - C:\MinGW\msys\1.0\bin\sh --login -c " - echo 'C:\MinGW\ /MinGW' > /etc/fstab; - cd /c/projects/utf8proc; - mkdir mingw_static; - cd mingw_static; - cmake .. -DCMAKE_VERBOSE_MAKEFILE=ON -G'MSYS Makefiles'; - make; - mkdir ../mingw_shared; - cd ../mingw_shared; - cmake .. -DCMAKE_VERBOSE_MAKEFILE=ON -DBUILD_SHARED_LIBS=ON -G'MSYS Makefiles'; + cd /c/projects/utf8proc && + mkdir mingw_static && + cd mingw_static && + cmake .. -DCMAKE_VERBOSE_MAKEFILE=ON -G'MSYS Makefiles' && + make && + mkdir ../mingw_shared && + cd ../mingw_shared && + cmake .. -DCMAKE_VERBOSE_MAKEFILE=ON -DBUILD_SHARED_LIBS=ON -G'MSYS Makefiles' && make " + +on_finish: + # Uncomment the following line for interactive debugging, which + # will print login data for a temporary remote session after the + # build. This requires an RDP version 6 client, e.g., FreeRDP. + #- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))