pass specific matrix for mysq/mariadb/pgsql

pull/4691/head
Miro Stauder 1 year ago committed by GitHub
parent 0715a9519d
commit 839802087f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -12,7 +12,7 @@ concurrency:
cancel-in-progress: true
jobs:
run:
run-mysql:
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }}
uses: sysown/proxysql/.github/workflows/ci-3p-django-framework.yml@GH-Actions
secrets: inherit
@ -20,3 +20,21 @@ jobs:
trigger: ${{ toJson(github) }}
infradb: ${{ vars.MATRIX_3P_SQLALCHEMY_infradb_mysql }}
connector: ${{ vars.MATRIX_3P_SQLALCHEMY_connector_mysql }}
run-mariadb:
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }}
uses: sysown/proxysql/.github/workflows/ci-3p-django-framework.yml@GH-Actions
secrets: inherit
with:
trigger: ${{ toJson(github) }}
infradb: ${{ vars.MATRIX_3P_SQLALCHEMY_infradb_mariadb }}
connector: ${{ vars.MATRIX_3P_SQLALCHEMY_connector_mariadb }}
run-pgsql:
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }}
uses: sysown/proxysql/.github/workflows/ci-3p-django-framework.yml@GH-Actions
secrets: inherit
with:
trigger: ${{ toJson(github) }}
infradb: ${{ vars.MATRIX_3P_SQLALCHEMY_infradb_pgsql }}
connector: ${{ vars.MATRIX_3P_SQLALCHEMY_connector_pgsql }}

@ -12,7 +12,7 @@ concurrency:
cancel-in-progress: true
jobs:
run:
run-mysql:
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }}
uses: sysown/proxysql/.github/workflows/ci-3p-laravel-framework.yml@GH-Actions
secrets: inherit
@ -20,3 +20,19 @@ jobs:
trigger: ${{ toJson(github) }}
infradb: ${{ vars.MATRIX_3P_SQLALCHEMY_infradb_mysql }}
connector: ${{ vars.MATRIX_3P_SQLALCHEMY_connector_mysql }}
run-mariadb:
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }}
uses: sysown/proxysql/.github/workflows/ci-3p-laravel-framework.yml@GH-Actions
secrets: inherit
with:
trigger: ${{ toJson(github) }}
infradb: ${{ vars.MATRIX_3P_SQLALCHEMY_infradb_mariadb }}
connector: ${{ vars.MATRIX_3P_SQLALCHEMY_connector_mariadb }}
run-pgsql:
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }}
uses: sysown/proxysql/.github/workflows/ci-3p-laravel-framework.yml@GH-Actions
secrets: inherit
with:
trigger: ${{ toJson(github) }}
infradb: ${{ vars.MATRIX_3P_SQLALCHEMY_infradb_pgsql }}
connector: ${{ vars.MATRIX_3P_SQLALCHEMY_connector_pgsql }}

@ -12,7 +12,7 @@ concurrency:
cancel-in-progress: true
jobs:
run:
run-mysql:
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }}
uses: sysown/proxysql/.github/workflows/ci-3p-sqlalchemy.yml@GH-Actions
secrets: inherit
@ -20,3 +20,21 @@ jobs:
trigger: ${{ toJson(github) }}
infradb: ${{ vars.MATRIX_3P_SQLALCHEMY_infradb_mysql }}
connector: ${{ vars.MATRIX_3P_SQLALCHEMY_connector_mysql }}
run-mariadb:
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }}
uses: sysown/proxysql/.github/workflows/ci-3p-sqlalchemy.yml@GH-Actions
secrets: inherit
with:
trigger: ${{ toJson(github) }}
infradb: ${{ vars.MATRIX_3P_SQLALCHEMY_infradb_mariadb }}
connector: ${{ vars.MATRIX_3P_SQLALCHEMY_connector_mariadb }}
run-pgsql:
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }}
uses: sysown/proxysql/.github/workflows/ci-3p-sqlalchemy.yml@GH-Actions
secrets: inherit
with:
trigger: ${{ toJson(github) }}
infradb: ${{ vars.MATRIX_3P_SQLALCHEMY_infradb_pgsql }}
connector: ${{ vars.MATRIX_3P_SQLALCHEMY_connector_pgsql }}

Loading…
Cancel
Save