You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
566 B
15 lines
566 B
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 && make)
|
|
- (mkdir build_shared && cd build_shared && cmake .. -DCMAKE_VERBOSE_MAKEFILE=ON -DBUILD_SHARED_LIBS=ON && make)
|
|
|