1234567891011121314151617181920212223242526272829 |
- language: php
- compiler:
- - gcc
- - clang
- os:
- - linux
- php:
- - 7.0
- - 7.1
- notifications:
- email: [email protected]
- before_script:
- - sudo apt-get install zlib1g-dev -y
- - git clone https://github.com/jmcnamara/libxlsxwriter.git
- - make -C ./libxlsxwriter && sudo make -C ./libxlsxwriter install
- - phpize && ./configure && make clean && make
- branches:
- only:
- - master
- - dev
- script:
- - exit 0
|