summaryrefslogtreecommitdiff
path: root/azure/coverage_job.yml
Commit message (Collapse)AuthorAgeFilesLines
* Add MSSQL setup to Azure Pipelines buildAdam Baratz2021-01-111-0/+1
|
* Upload coverage data to codecov.ioPaul Crovella2020-12-031-1/+4
| | | | Closes GH-6486.
* Use shared setup.yml on azureNikita Popov2020-06-121-5/+1
| | | | Make sure things stay synchronized between different x64 jobs.
* Explicitly specify ubuntu versions on azure pipelinesNikita Popov2019-11-021-1/+1
| | | | | Use the new 18.04 for the ones where the build succeeded and the previous 16.04 where it didn't.
* Add a run with opcache to the coverage jobFabien Villepinte2019-10-221-0/+7
| | | | | Some tests are not run when OPcache is not available. This should make the results more accurate.
* Azure: Publish code coverage resultsGerard Roche2019-10-111-0/+42
* Add an Azure Publish Code Coverage Results task * Add `make gcovr-html` to generate a gcovr test coverage report in HTML * Add `make gcovr-xml` to generate a gcovr test coverage report in XML * Remove `test` target dependency from `make lcov-html`; Run the two targets together instead: `make test lcov-html`. Re: https://github.com/php/php-src/pull/4739#issuecomment-534911441 See: https://externals.io/message/107113, https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/test/publish-code-coverage-results?view=azure-devops, and https://github.com/php/php-src/pull/4759.