From 5a7291ab1be01ae88a3cbb9b491675bbf97ca2c5 Mon Sep 17 00:00:00 2001 From: Grzegorz Sadowski Date: Fri, 20 Sep 2024 10:56:45 +0200 Subject: [PATCH] [CI] Minor refactor in full builds --- .github/workflows/ci__full_1_12.yaml | 12 ++++++------ .github/workflows/ci__full_1_13.yaml | 12 ++++++------ .github/workflows/ci__full_2_0.yaml | 12 ++++++------ 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci__full_1_12.yaml b/.github/workflows/ci__full_1_12.yaml index cb8a925134..fbe611323e 100644 --- a/.github/workflows/ci__full_1_12.yaml +++ b/.github/workflows/ci__full_1_12.yaml @@ -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 diff --git a/.github/workflows/ci__full_1_13.yaml b/.github/workflows/ci__full_1_13.yaml index c227ce07f4..e7f8951ea6 100644 --- a/.github/workflows/ci__full_1_13.yaml +++ b/.github/workflows/ci__full_1_13.yaml @@ -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 diff --git a/.github/workflows/ci__full_2_0.yaml b/.github/workflows/ci__full_2_0.yaml index 2a84318eb0..064b100060 100644 --- a/.github/workflows/ci__full_2_0.yaml +++ b/.github/workflows/ci__full_2_0.yaml @@ -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