From 35f9895aebbc66df8cdaef857c5944ed83cd276b Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Mon, 1 Nov 2021 16:43:10 -0300 Subject: [PATCH 1/2] chore: fix circleci build --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 56a90d9d9..d034138e9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,7 +10,7 @@ commands: jobs: build: docker: - - image: circleci/php:7.4-node-browsers + - image: cimg/php:7.4-browsers steps: - checkout_with_workspace - run: @@ -24,7 +24,7 @@ jobs: # Linting lint: docker: - - image: circleci/php:7.4-node-browsers + - image: cimg/php:7.4-browsers steps: - checkout_with_workspace - run: @@ -41,7 +41,7 @@ jobs: test-php: docker: - - image: circleci/php:7.4 + - image: cimg/php:7.4 - image: circleci/mysql:5.6 environment: - WP_TESTS_DIR: '/tmp/wordpress-tests-lib' @@ -70,7 +70,7 @@ jobs: release_github: docker: - - image: circleci/php:7.4-node-browsers + - image: cimg/php:7.4-browsers steps: - checkout_with_workspace - run: @@ -90,7 +90,7 @@ jobs: release_wporg: docker: - - image: circleci/php:7.4-node-browsers + - image: cimg/php:7.4-browsers steps: - checkout_with_workspace - run: @@ -101,7 +101,7 @@ jobs: post_release: docker: - - image: circleci/php:7.4-node-browsers + - image: cimg/php:7.4-browsers steps: - checkout_with_workspace - run: From d5e641f0e0644faecbaee0c67f90a8dab409f2db Mon Sep 17 00:00:00 2001 From: Miguel Peixe Date: Mon, 1 Nov 2021 16:45:18 -0300 Subject: [PATCH 2/2] fix: remove ext install --- .circleci/config.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d034138e9..005651af6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -56,9 +56,7 @@ jobs: - run: name: Install Dependencies command: | - sudo apt-get update && sudo apt-get install subversion - sudo -E docker-php-ext-install mysqli - sudo apt-get update && sudo apt-get install default-mysql-client + sudo apt-get update && sudo apt-get install -y subversion default-mysql-client - run: name: Run Tests command: |