Skip to content

Commit

Permalink
update .circleci/config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
fenric committed Oct 7, 2021
1 parent 7fbdc5d commit 80c7395
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ jobs:
- image: circleci/php:7.1-cli-node-browsers
steps:
- checkout
- run: sudo apt install libyaml-dev -y
- run: sudo apt update -y
- run: sudo apt install -y libyaml-dev
- run: sudo pecl channel-update pecl.php.net
- run: sudo pecl install yaml
- run: sudo docker-php-ext-enable yaml
- run: php -v
Expand All @@ -20,7 +22,9 @@ jobs:
- image: circleci/php:7.2-cli-node-browsers
steps:
- checkout
- run: sudo apt install libyaml-dev -y
- run: sudo apt update -y
- run: sudo apt install -y libyaml-dev
- run: sudo pecl channel-update pecl.php.net
- run: sudo pecl install yaml
- run: sudo docker-php-ext-enable yaml
- run: php -v
Expand All @@ -31,7 +35,9 @@ jobs:
- image: circleci/php:7.3-cli-node-browsers
steps:
- checkout
- run: sudo apt install libyaml-dev -y
- run: sudo apt update -y
- run: sudo apt install -y libyaml-dev
- run: sudo pecl channel-update pecl.php.net
- run: sudo pecl install yaml
- run: sudo docker-php-ext-enable yaml
- run: php -v
Expand All @@ -42,7 +48,9 @@ jobs:
- image: circleci/php:7.4-cli-node-browsers
steps:
- checkout
- run: sudo apt install libyaml-dev -y
- run: sudo apt update -y
- run: sudo apt install -y libyaml-dev
- run: sudo pecl channel-update pecl.php.net
- run: sudo pecl install yaml
- run: sudo docker-php-ext-enable yaml
- run: php -v
Expand All @@ -53,7 +61,9 @@ jobs:
- image: circleci/php:8.0-cli-node-browsers
steps:
- checkout
- run: sudo apt install libyaml-dev -y
- run: sudo apt update -y
- run: sudo apt install -y libyaml-dev
- run: sudo pecl channel-update pecl.php.net
- run: sudo pecl install yaml
- run: sudo docker-php-ext-enable yaml
- run: php -v
Expand Down

0 comments on commit 80c7395

Please sign in to comment.