Skip to content

Commit

Permalink
a2
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Nov 21, 2024
1 parent 788e4c7 commit d6cdc2c
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,11 @@ job-test: &job-test
- run:
name: Install PCOV
command: |
git clone https://github.com/sebastianbergmann/pcov.git
cd pcov
phpize
./configure --enable-pcov
make
make test
make install
echo "extension=pcov.so" | sudo tee -a /usr/local/etc/php/conf.d/pcov.ini
echo "pcov.enabled=1" | sudo tee -a /usr/local/etc/php/conf.d/pcov.ini
# @todo Remove after resolution in https://github.com/krakjoe/pcov/issues/114
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 "extension=pcov.so" | sudo tee -a /etc/php.d/pcov.ini
echo -e "extension=pcov.so\npcov.enabled=1" | sudo tee -a /etc/php.d/pcov.ini
- run:
name: Update SYMFONY_DEPRECATIONS_HELPER for PHP 8.4
Expand Down

0 comments on commit d6cdc2c

Please sign in to comment.