* Add: tests to CMakeLists.txt * Disable compilation of charwidth, graphemetest and normtest because of missing getline * Refactoring: UTF8PROC_ENABLE_TESTING default Off, move tests that don't compile on windows to NOT MSVC section, add testing to appveyor.yml * Add: testing to travis * Changed: flag to WIN32 because MinGW has the same problem as MSVC * Commented out graphemetest and normtest because they fail. * Re-added: graphemetest and normtest added missing data to the path of the text files. * Fix: last commit was party wrong normtest failed. * * Commented out graphemetest and normtest because they fail, because in CMakeLists is missing building of data.
16 lines
642 B
YAML
16 lines
642 B
YAML
language: julia
|
|
julia:
|
|
- 1.1
|
|
notifications:
|
|
email: false
|
|
include:
|
|
- language: julia
|
|
julia: 1.1
|
|
script:
|
|
- make manifest && diff MANIFEST.new MANIFEST
|
|
- make check
|
|
- make data && diff data/utf8proc_data.c.new utf8proc_data.c
|
|
- make clean && git status --ignored --porcelain && test -z "$(git status --ignored --porcelain)"
|
|
- (mkdir build_static && cd build_static && cmake .. -DCMAKE_VERBOSE_MAKEFILE=ON -DUTF8PROC_ENABLE_TESTING=On && make && ctest)
|
|
- (mkdir build_shared && cd build_shared && cmake .. -DCMAKE_VERBOSE_MAKEFILE=ON -DBUILD_SHARED_LIBS=ON -DUTF8PROC_ENABLE_TESTING=On && make && ctest)
|