| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | language: phpcompiler:  - gcc  - clangos:  - linuxmatrix:  include:    - php: 7.0      env: USE_VALGRIND=1    - php: 7.1      env: USE_VALGRIND=1    - php: 7.2      env: USE_VALGRIND=1    - php: 7.3    - php: 7.4    - php: nightlyaddons:  apt:    packages: valgrindnotifications:  email: [email protected]before_script:  - php -m  - git submodule update --init  - sudo apt-get install zlib1g-dev -y  - phpize && ./configure --enable-reader && make clean && makebranches:  only:    - master    - devscript:    - ./travis/run-test.sh    - make clean && phpize --clean    - phpize && ./configure --enable-reader && make clean && make    - if [ -n "$USE_VALGRIND" ]; then REPORT_EXIT_STATUS=1 php -n run-tests.php -m -n -d extension_dir=./modules/ -d extension=xlswriter.so -P --show-all --set-timeout 120; fi
 |