diff --git a/.github/workflows/ci_e2e-mysql.yaml b/.github/workflows/ci_e2e-mysql.yaml index 6b8ae5cebd..2e8968d9b0 100644 --- a/.github/workflows/ci_e2e-mysql.yaml +++ b/.github/workflows/ci_e2e-mysql.yaml @@ -44,14 +44,14 @@ jobs: behat-no-js: needs: get-matrix runs-on: ubuntu-latest - name: "Non-JS, PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }} (${{ matrix.env }}), MySQL ${{ matrix.mysql }}, Twig ${{ matrix.twig }}, API Platform ${{ matrix.api-platform }}" + name: "Non-JS, PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }} (${{ matrix.env || 'test_cached' }}), MySQL ${{ matrix.mysql }}, Twig ${{ matrix.twig }}, API Platform ${{ matrix.api-platform }}" timeout-minutes: 45 strategy: fail-fast: false matrix: ${{ fromJson(needs.get-matrix.outputs.matrix) }} env: - APP_ENV: ${{ matrix.env }} + APP_ENV: ${{ matrix.env || 'test_cached' }} DATABASE_URL: "mysql://root:root@127.0.0.1/sylius?charset=utf8mb4&serverVersion=${{ matrix.mysql }}" steps: @@ -132,14 +132,14 @@ jobs: behat-ui-js-chromedriver: needs: get-matrix runs-on: ubuntu-latest - name: "JS with Chromedriver, PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }} (${{ matrix.env }}), MySQL ${{ matrix.mysql }}, Twig ${{ matrix.twig }}, API Platform ${{ matrix.api-platform }}" + name: "JS with Chromedriver, PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }} (${{ matrix.env || 'test_cached' }}), MySQL ${{ matrix.mysql }}, Twig ${{ matrix.twig }}, API Platform ${{ matrix.api-platform }}" timeout-minutes: 45 strategy: fail-fast: false matrix: ${{ fromJson(needs.get-matrix.outputs.matrix) }} env: - APP_ENV: ${{ matrix.env }} + APP_ENV: ${{ matrix.env || 'test_cached' }} DATABASE_URL: "mysql://root:root@127.0.0.1/sylius?charset=utf8mb4&serverVersion=${{ matrix.mysql }}" steps: @@ -210,14 +210,14 @@ jobs: behat-ui-js-panther: needs: get-matrix runs-on: ubuntu-latest - name: "JS with Panther, PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }} (${{ matrix.env }}), MySQL ${{ matrix.mysql }}, Twig ${{ matrix.twig }}, API Platform ${{ matrix.api-platform }}" + name: "JS with Panther, PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }} (${{ matrix.env || 'test_cached' }}), MySQL ${{ matrix.mysql }}, Twig ${{ matrix.twig }}, API Platform ${{ matrix.api-platform }}" timeout-minutes: 45 strategy: fail-fast: false matrix: ${{ fromJson(needs.get-matrix.outputs.matrix) }} env: - APP_ENV: ${{ matrix.env }} + APP_ENV: ${{ matrix.env || 'test_cached' }} DATABASE_URL: "mysql://root:root@127.0.0.1/sylius?charset=utf8mb4&serverVersion=${{ matrix.mysql }}" steps: diff --git a/.github/workflows/matrix.json b/.github/workflows/matrix.json index 559012aaaf..d3cc099de9 100644 --- a/.github/workflows/matrix.json +++ b/.github/workflows/matrix.json @@ -46,16 +46,14 @@ "symfony": "^6.4", "api-platform": "^3.3", "mysql": "8.0", - "twig": "^3.3", - "env": "test_cached" + "twig": "^3.3" }, { "php": "8.3", "symfony": "^7.1", "api-platform": "^3.3", "mysql": "8.4", - "twig": "^3.3", - "env": "test_cached" + "twig": "^3.3" }, { "php": "8.3", @@ -127,7 +125,6 @@ "api-platform": ["^3.3"], "mysql": ["8.0", "8.4"], "twig": ["^3.3"], - "env": "test_cached", "include": [ { "php": "8.3",