Skip to content

Commit

Permalink
t
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Dec 9, 2024
1 parent caac278 commit d2c5573
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@ jobs:
name: Validate composer.json
command: composer validate --ansi --strict

- run:
name: Install PCOV
command: |
# @todo Replace with PECL install after resolution in https://github.com/krakjoe/pcov/issues/114
cd $HOME && git clone https://github.com/sebastianbergmann/pcov.git && cd pcov && git checkout 3fd17a87da7c50c055c92b2ffc6b2222f9c11fa9
phpize && ./configure --enable-pcov && make && NO_INTERACTION=1 make test && sudo make install
echo -e "extension=pcov.so\npcov.enabled=1" | sudo tee -a /etc/php.d/pcov.ini
- run:
name: Install dependencies
command: composer install --ansi --no-progress --no-interaction --no-suggest --prefer-dist
Expand Down

0 comments on commit d2c5573

Please sign in to comment.