Skip to content

Commit 70f2077

Browse files
committed
Return CircleCI config to previous state
I (and Copilot) had some ideas that might have fixed CircleCI but after trying 4 times nothing I did worked. This commit just reverts it back to the state it was before I meddled (sorry)!
1 parent 5188a69 commit 70f2077

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.circleci/config.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@ jobs:
44
working_directory: ~/wp-cli/package-tests
55
parallelism: 1
66
docker:
7-
- image: cimg/php:8.3
7+
- image: circleci/php:7.4-bullseye
88
environment:
99
WP_CLI_TEST_DBHOST: 127.0.0.1:3306
1010
WP_CLI_TEST_DBROOTPASS: root
1111
WP_CLI_TEST_DBUSER: wp_cli_test
1212
WP_CLI_TEST_DBPASS: password1
13-
- image: mariadb:11.4
14-
command: mariadbd --skip-ssl
13+
- image: circleci/mariadb:10.5
1514
environment:
1615
MYSQL_ROOT_PASSWORD: root
1716
MYSQL_DATABASE: wp_cli_test
@@ -20,8 +19,10 @@ jobs:
2019
steps:
2120
- checkout
2221
- run: |
22+
sudo sh -c "printf '\ndeb http://ftp.us.debian.org/debian bullseye main\n' >> /etc/apt/sources.list"
2323
sudo apt-get update
24-
sudo apt-get install -y mariadb-client
24+
sudo docker-php-ext-install mysqli
25+
sudo apt-get install mariadb-client
2526
- run: |
2627
echo -e "memory_limit = 1024M" | sudo tee /usr/local/etc/php/php.ini > /dev/null
2728
- run: |
@@ -36,4 +37,4 @@ jobs:
3637
- run: |
3738
WP_VERSION=latest composer test
3839
rm -rf '/tmp/wp-cli-test core-download-cache'
39-
WP_VERSION=trunk composer test
40+
WP_VERSION=trunk composer test

0 commit comments

Comments
 (0)