Skip to content
Snippets Groups Projects
Commit 628d93fa authored by Rajab Natshah's avatar Rajab Natshah
Browse files

Issue #3194401: Switch to CircleCI as the default automated testing platform

parent b053213a
No related branches found
No related tags found
No related merge requests found
...@@ -37,22 +37,17 @@ jobs: ...@@ -37,22 +37,17 @@ jobs:
- run: - run:
name: Install PHP extra name: Install PHP extra
command: | command: |
sudo apt update sudo apt -qq update && sudo apt -qqy upgrade
sudo apt install -y libfreetype6-dev libjpeg62-turbo-dev libpng-dev sudo apt-get -yqq install libfreetype6-dev libjpeg62-turbo-dev libpng-dev xvfb zip
sudo -E docker-php-ext-install zip
sudo -E docker-php-ext-configure pdo_mysql --with-pdo-mysql=mysqlnd sudo -E docker-php-ext-configure pdo_mysql --with-pdo-mysql=mysqlnd
sudo -E docker-php-ext-install bcmath pdo_mysql sudo -E docker-php-ext-install zip gd mbstring bcmath pdo_mysql mysqli pdo pdo_mysql
sudo -E docker-php-ext-install gd sudo service apache2 restart
## Change PHP Configurations. ## Change PHP Configurations.
- run: - run:
name: PHP Configurations name: PHP Configurations
command: | command: |
echo -e "memory_limit = -1" | sudo tee /usr/local/etc/php/php.ini > /dev/null echo -e "memory_limit = -1" | sudo tee /usr/local/etc/php/php.ini > /dev/null
sudo service apache2 restart
- run:
name: Disable xdebug PHP extension
command: |
sudo rm /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini sudo rm /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
sudo service apache2 restart sudo service apache2 restart
- restore_cache: - restore_cache:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment