minor #16983 [CI] Minor refactor in full builds (GSadee)

This PR was merged into the 1.13 branch.

Discussion
----------

| Q               | A
|-----------------|-----
| Branch?         | 1.13
| Bug fix?        | no
| New feature?    | no
| BC breaks?      | no
| Deprecations?   | no<!-- don't forget to update the UPGRADE-*.md file -->
| Related tickets | 
| License         | MIT

<!--
 - Bug fixes must be submitted against the 1.13 branch
 - Features and deprecations must be submitted against the 1.14 branch
 - Features, removing deprecations and BC breaks must be submitted against the 2.0 branch
 - Make sure that the correct base branch is set

 To be sure you are not breaking any Backward Compatibilities, check the documentation:
 https://docs.sylius.com/en/latest/book/organization/backward-compatibility-promise.html
-->


Commits
-------

5a7291ab1b [CI] Minor refactor in full builds
This commit is contained in:
Grzegorz Sadowski 2024-09-20 11:03:06 +02:00 committed by GitHub
commit a9dc38bb26
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 18 additions and 18 deletions

View file

@ -17,7 +17,7 @@ jobs:
static-checks:
strategy:
matrix:
branch: [ "1.12" ]
branch: ["1.12"]
name: "[${{ matrix.branch }}] Static checks"
uses: ./.github/workflows/ci_static-checks.yaml
with:
@ -26,7 +26,7 @@ jobs:
e2e-mariadb:
strategy:
matrix:
branch: [ "1.12" ]
branch: ["1.12"]
name: "[${{ matrix.branch }}] End-to-end tests (MariaDB)"
needs: static-checks
uses: ./.github/workflows/ci_e2e-mariadb.yaml
@ -36,7 +36,7 @@ jobs:
e2e-mysql:
strategy:
matrix:
branch: [ "1.12" ]
branch: ["1.12"]
name: "[${{ matrix.branch }}] End-to-end tests (MySQL)"
needs: static-checks
uses: ./.github/workflows/ci_e2e-mysql.yaml
@ -46,7 +46,7 @@ jobs:
e2e-pgsql:
strategy:
matrix:
branch: [ "1.12" ]
branch: ["1.12"]
name: "[${{ matrix.branch }}] End-to-end tests (PostgreSQL)"
needs: static-checks
uses: ./.github/workflows/ci_e2e-pgsql.yaml
@ -56,7 +56,7 @@ jobs:
e2e-custom:
strategy:
matrix:
branch: [ "1.12" ]
branch: ["1.12"]
name: "[${{ matrix.branch }}] End-to-end tests (Custom)"
needs: static-checks
uses: ./.github/workflows/ci_e2e-custom.yaml
@ -72,7 +72,7 @@ jobs:
packages:
strategy:
matrix:
branch: [ "1.12" ]
branch: ["1.12"]
name: "[${{ matrix.branch }}] Packages"
needs: static-checks
uses: ./.github/workflows/ci_packages.yaml

View file

@ -17,7 +17,7 @@ jobs:
static-checks:
strategy:
matrix:
branch: [ "1.13" ]
branch: ["1.13"]
name: "[${{ matrix.branch }}] Static checks"
uses: ./.github/workflows/ci_static-checks.yaml
with:
@ -26,7 +26,7 @@ jobs:
e2e-mariadb:
strategy:
matrix:
branch: [ "1.13" ]
branch: ["1.13"]
name: "[${{ matrix.branch }}] End-to-end tests (MariaDB)"
needs: static-checks
uses: ./.github/workflows/ci_e2e-mariadb.yaml
@ -36,7 +36,7 @@ jobs:
e2e-mysql:
strategy:
matrix:
branch: [ "1.13" ]
branch: ["1.13"]
name: "[${{ matrix.branch }}] End-to-end tests (MySQL)"
needs: static-checks
uses: ./.github/workflows/ci_e2e-mysql.yaml
@ -46,7 +46,7 @@ jobs:
e2e-pgsql:
strategy:
matrix:
branch: [ "1.13" ]
branch: ["1.13"]
name: "[${{ matrix.branch }}] End-to-end tests (PostgreSQL)"
needs: static-checks
uses: ./.github/workflows/ci_e2e-pgsql.yaml
@ -56,7 +56,7 @@ jobs:
e2e-custom:
strategy:
matrix:
branch: [ "1.13" ]
branch: ["1.13"]
name: "[${{ matrix.branch }}] End-to-end tests (Custom)"
needs: static-checks
uses: ./.github/workflows/ci_e2e-custom.yaml
@ -72,7 +72,7 @@ jobs:
packages:
strategy:
matrix:
branch: [ "1.13" ]
branch: ["1.13"]
name: "[${{ matrix.branch }}] Packages"
needs: static-checks
uses: ./.github/workflows/ci_packages.yaml

View file

@ -17,7 +17,7 @@ jobs:
static-checks:
strategy:
matrix:
branch: [ "2.0" ]
branch: ["2.0"]
name: "[${{ matrix.branch }}] Static checks"
uses: ./.github/workflows/ci_static-checks.yaml
with:
@ -26,7 +26,7 @@ jobs:
e2e-mariadb:
strategy:
matrix:
branch: [ "2.0" ]
branch: ["2.0"]
name: "[${{ matrix.branch }}] End-to-end tests (MariaDB)"
needs: static-checks
uses: ./.github/workflows/ci_e2e-mariadb.yaml
@ -36,7 +36,7 @@ jobs:
e2e-mysql:
strategy:
matrix:
branch: [ "2.0" ]
branch: ["2.0"]
name: "[${{ matrix.branch }}] End-to-end tests (MySQL)"
needs: static-checks
uses: ./.github/workflows/ci_e2e-mysql.yaml
@ -46,7 +46,7 @@ jobs:
e2e-pgsql:
strategy:
matrix:
branch: [ "2.0" ]
branch: ["2.0"]
name: "[${{ matrix.branch }}] End-to-end tests (PostgreSQL)"
needs: static-checks
uses: ./.github/workflows/ci_e2e-pgsql.yaml
@ -56,7 +56,7 @@ jobs:
e2e-custom:
strategy:
matrix:
branch: [ "2.0" ]
branch: ["2.0"]
name: "[${{ matrix.branch }}] End-to-end tests (Custom)"
needs: static-checks
uses: ./.github/workflows/ci_e2e-custom.yaml
@ -72,7 +72,7 @@ jobs:
packages:
strategy:
matrix:
branch: [ "2.0" ]
branch: ["2.0"]
name: "[${{ matrix.branch }}] Packages"
needs: static-checks
uses: ./.github/workflows/ci_packages.yaml