This repository has been archived on 2020-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
ext-collections/.travis.yml

20 lines
305 B
YAML
Raw Normal View History

2018-03-23 09:29:34 +00:00
language: php
2020-03-20 03:20:08 +00:00
dist: bionic
2018-03-23 09:29:34 +00:00
php:
- 7.1
- 7.2
2019-01-18 12:44:05 +00:00
- 7.3
2019-12-09 20:50:01 +00:00
- 7.4
2018-03-23 09:29:34 +00:00
script:
- phpize
- ./configure
2020-03-24 03:07:16 +00:00
- make EXTRA_CFLAGS='-coverage' EXTRA_LDFLAGS='-fprofile-arcs'
- make test
2020-03-30 04:28:12 +00:00
- gcov --object-directory=src/.libs src/collections_methods.c
2020-03-20 03:20:08 +00:00
2020-03-24 03:07:16 +00:00
after_success:
- bash <(curl -s https://codecov.io/bash)