From 83354bb63b5e35ac9a6f604301a41d5e61fc2bdd Mon Sep 17 00:00:00 2001 From: David Stone Date: Sun, 2 Feb 2025 01:48:15 -0700 Subject: [PATCH] use newer composer and php 8 --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2526f81..f874a97 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -21,6 +21,7 @@ job-references: command: | sudo apt-get update && sudo apt-get install subversion mariadb-client sudo -E docker-php-ext-install mysqli + sudo -E docker-php-ext-install gd php_job: &php_job environment: @@ -33,6 +34,7 @@ job-references: - run: name: "Run Tests" command: | + sudo composer selfupdate composer install rm -rf $WP_TESTS_DIR $WP_CORE_DIR bash bin/install-wp-tests.sh wordpress_test root '' 127.0.0.1 latest @@ -42,5 +44,5 @@ jobs: php74-build: <<: *php_job docker: - - image: circleci/php:7.4 + - image: circleci/php:8.0 - image: *mysql_image