Skip to content

Commit f8bd240

Browse files
committed
Revert to version 2
1 parent 79a7a23 commit f8bd240

File tree

1 file changed

+7
-15
lines changed

1 file changed

+7
-15
lines changed

.circleci/config.yml

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,4 @@
1-
version: 2.1
2-
3-
commands:
4-
disable-php-memory-limit:
5-
steps:
6-
- run:
7-
name: Disable PHP memory limit
8-
command: echo 'memory_limit=-1' | sudo tee -a /usr/local/etc/php/php.ini
9-
disable-xdebug-php-extension:
10-
steps:
11-
- run:
12-
name: Disable Xdebug PHP extension
13-
command: sudo rm /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
1+
version: 2
142

153
jobs:
164
build:
@@ -22,8 +10,12 @@ jobs:
2210
- image: circleci/php:7.2
2311
steps:
2412
- checkout
25-
- disable-xdebug-php-extension
26-
- disable-php-memory-limit
13+
- run:
14+
name: Disable PHP memory limit
15+
command: echo 'memory_limit=-1' | sudo tee -a /usr/local/etc/php/php.ini
16+
- run:
17+
name: Disable Xdebug PHP extension
18+
command: sudo rm /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
2719
- run: git config --global user.name "Florian Weber (via CircleCI)"
2820
- run: git config --global user.email "florian@webflo.org"
2921
- add_ssh_keys

0 commit comments

Comments
 (0)