From e5a5a9175d5e520abbeca84fecde792d6b75a2e3 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Mon, 4 May 2020 20:16:56 +0200 Subject: [PATCH] Fix php8 build bootstrap --- .github/workflows/continuous-integration.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index d1e1d1b1b..462dd7e5e 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -87,7 +87,7 @@ jobs: if: "matrix.dependencies == 'highest'" run: "composer config platform --unset && composer update ${{ env.COMPOSER_FLAGS }}" - - name: "Install highest dependencies from composer.json using composer binary provided by system" + - name: "Install highest dependencies from composer.json using composer binary provided by system, ignoring platform requirements" if: "matrix.dependencies == 'highest-ignore'" run: "composer config platform --unset && composer update ${{ env.COMPOSER_FLAGS }} --ignore-platform-reqs" @@ -100,6 +100,7 @@ jobs: run: "composer install ${{ env.COMPOSER_FLAGS }}" - name: "Run install again using composer binary from source" + if: "matrix.dependencies != 'highest-ignore'" run: "bin/composer install ${{ env.COMPOSER_FLAGS }}" - name: "Validate composer.json"