From 106289e5dc5b9c0fa459fba28a99ea888f5a51b6 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Wed, 13 May 2020 08:56:37 +0200 Subject: [PATCH] Fix lowest 8 build to use ignore platform reqs --- .github/workflows/continuous-integration.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 72a1d9547..ffd1f3433 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -56,7 +56,7 @@ jobs: dependencies: locked experimental: false - php-version: 8.0 - dependencies: lowest + dependencies: lowest-ignore os: ubuntu-latest experimental: true - php-version: 8.0 @@ -99,6 +99,10 @@ jobs: if: "matrix.dependencies == 'lowest'" run: "composer update ${{ env.COMPOSER_FLAGS }} --prefer-lowest" + - name: "Install lowest dependencies from composer.json using composer binary provided by system, ignoring platform requirements" + if: "matrix.dependencies == 'lowest-ignore'" + run: "composer update ${{ env.COMPOSER_FLAGS }} --prefer-lowest --ignore-platform-reqs" + - name: "Install dependencies from composer.lock using composer binary provided by system" if: "matrix.dependencies == 'locked'" run: "composer install ${{ env.COMPOSER_FLAGS }}"