mirror of
https://github.com/jmcnamara/libxlsxwriter.git
synced 2026-05-22 06:05:46 -06:00
22 lines
355 B
YAML
22 lines
355 B
YAML
language: c
|
|
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
install:
|
|
- sudo pip install pytest
|
|
- sudo apt-get install -y valgrind
|
|
- curl -O -L http://zlib.net/zlib-1.2.8.tar.gz
|
|
- tar zxf zlib-1.2.8.tar.gz
|
|
- cd zlib-1.2.8
|
|
- ./configure
|
|
- make
|
|
- sudo make install
|
|
- cd ..
|
|
|
|
script:
|
|
- make
|
|
- make test_functional
|
|
- make test_unit
|
|
- make test_valgrind
|