-
Notifications
You must be signed in to change notification settings - Fork 992
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit a324386
Showing
21 changed files
with
494 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
This is the place to report a **reproducible bug**, **documentation error** or **feature request** for ProxySQL. | ||
|
||
Support questions will not be answered here. For community support, use the Google forum: https://groups.google.com/forum/#!forum/proxysql | ||
* Note that due to time constraints ProxySQL engineers may be slow to respond to forum posts | ||
* For information on paid support contracts: https://proxysql.com/services/support/ | ||
|
||
If you are submitting a reproducible bug report, please provide: | ||
- [ ] A clear description of the issue | ||
- [ ] ProxySQL version | ||
- [ ] OS version | ||
- [ ] The steps to reproduce the issue | ||
- [ ] The **full** ProxySQL error log (default location: `/var/lib/proxysql/proxysql.log`) | ||
|
||
If this is a crashing bug, please also include: | ||
- [ ] The package used to install ProxySQL | ||
- [ ] The compressed proxysql binary | ||
- [ ] The compressed core dump (Note: if you're worried it may contain sensitive data, please contact us for information on sharing it securely: https://proxysql.com/contact-us/) | ||
|
||
If the above information is not provided, this issue is likely to be closed. | ||
|
||
Please use markdown to format any code or SQL: https://guides.github.com/features/mastering-markdown/ | ||
|
||
Thank you! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: CI-3p-django-framework | ||
run-name: '${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} ${{ github.workflow }} ${{ github.event.workflow_run && github.event.workflow_run.head_sha || github.sha }}' | ||
|
||
on: | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: [ CI-trigger ] | ||
types: [ completed ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
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 | ||
with: | ||
trigger: ${{ toJson(github) }} | ||
infradb: ${{ vars.MATRIX_3P_DJANGO_FRAMEWORK_infradb_mysql }} | ||
connector: ${{ vars.MATRIX_3P_DJANGO_FRAMEWORK_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_DJANGO_FRAMEWORK_infradb_mariadb }} | ||
connector: ${{ vars.MATRIX_3P_DJANGO_FRAMEWORK_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_DJANGO_FRAMEWORK_infradb_pgsql }} | ||
connector: ${{ vars.MATRIX_3P_DJANGO_FRAMEWORK_connector_pgsql }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: CI-3p-laravel-framework | ||
run-name: '${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} ${{ github.workflow }} ${{ github.event.workflow_run && github.event.workflow_run.head_sha || github.sha }}' | ||
|
||
on: | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: [ CI-trigger ] | ||
types: [ completed ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
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 | ||
with: | ||
trigger: ${{ toJson(github) }} | ||
infradb: ${{ vars.MATRIX_3P_LARAVEL_FRAMEWORK_infradb_mysql }} | ||
connector: ${{ vars.MATRIX_3P_LARAVEL_FRAMEWORK_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_LARAVEL_FRAMEWORK_infradb_mariadb }} | ||
connector: ${{ vars.MATRIX_3P_LARAVEL_FRAMEWORK_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_LARAVEL_FRAMEWORK_infradb_pgsql }} | ||
connector: ${{ vars.MATRIX_3P_LARAVEL_FRAMEWORK_connector_pgsql }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: CI-3p-mariadb-connector-c | ||
run-name: '${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} ${{ github.workflow }} ${{ github.event.workflow_run && github.event.workflow_run.head_sha || github.sha }}' | ||
|
||
on: | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: [ CI-trigger ] | ||
types: [ completed ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run: | ||
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }} | ||
uses: sysown/proxysql/.github/workflows/ci-3p-mariadb-connector-c.yml@GH-Actions | ||
secrets: inherit | ||
with: | ||
trigger: ${{ toJson(github) }} | ||
infradb: ${{ vars.MATRIX_3P_MARIADB_CONNECTOR_C_infradb_mysql }} | ||
connector: ${{ vars.MATRIX_3P_MARIADB_CONNECTOR_C_connector_mysql }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: CI-3p-mysql-connector-j | ||
run-name: '${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} ${{ github.workflow }} ${{ github.event.workflow_run && github.event.workflow_run.head_sha || github.sha }}' | ||
|
||
on: | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: [ CI-trigger ] | ||
types: [ completed ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run: | ||
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }} | ||
uses: sysown/proxysql/.github/workflows/ci-3p-mysql-connector-j.yml@GH-Actions | ||
secrets: inherit | ||
with: | ||
trigger: ${{ toJson(github) }} | ||
infradb: ${{ vars.MATRIX_3P_MYSQL_CONNECTOR_J_infradb_mysql }} | ||
connector: ${{ vars.MATRIX_3P_MYSQL_CONNECTOR_J_connector_mysql }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: CI-3p-php-pdo-mysql | ||
run-name: '${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} ${{ github.workflow }} ${{ github.event.workflow_run && github.event.workflow_run.head_sha || github.sha }}' | ||
|
||
on: | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: [ CI-trigger ] | ||
types: [ completed ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run: | ||
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }} | ||
uses: sysown/proxysql/.github/workflows/ci-3p-php-pdo-mysql.yml@GH-Actions | ||
secrets: inherit | ||
with: | ||
trigger: ${{ toJson(github) }} | ||
infradb: ${{ vars.MATRIX_3P_PHP_PDO_MYSQL_infradb_mysql }} | ||
connector: ${{ vars.MATRIX_3P_PHP_PDO_MYSQL_connector_mysql }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: CI-3p-postgresql | ||
run-name: '${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} ${{ github.workflow }} ${{ github.event.workflow_run && github.event.workflow_run.head_sha || github.sha }}' | ||
|
||
on: | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: [ CI-trigger ] | ||
types: [ completed ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run: | ||
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }} | ||
uses: sysown/proxysql/.github/workflows/ci-3p-postgresql.yml@GH-Actions | ||
secrets: inherit | ||
with: | ||
trigger: ${{ toJson(github) }} | ||
infradb: ${{ vars.MATRIX_3P_POSTGRESQL_infradb_pgsql }} | ||
connector: ${{ vars.MATRIX_3P_POSTGRESQL_connector_pgsql }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: CI-3p-sqlalchemy | ||
run-name: '${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} ${{ github.workflow }} ${{ github.event.workflow_run && github.event.workflow_run.head_sha || github.sha }}' | ||
|
||
on: | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: [ CI-trigger ] | ||
types: [ completed ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
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 | ||
with: | ||
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: CI-basictests | ||
run-name: '${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} ${{ github.workflow }} ${{ github.event.workflow_run && github.event.workflow_run.head_sha || github.sha }}' | ||
|
||
on: | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: [ CI-trigger ] | ||
types: [ completed ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run: | ||
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }} | ||
uses: sysown/proxysql/.github/workflows/ci-basictests.yml@GH-Actions | ||
secrets: inherit | ||
with: | ||
trigger: ${{ toJson(github) }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: CI-builds | ||
run-name: '${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} ${{ github.workflow }} ${{ github.event.workflow_run && github.event.workflow_run.head_sha || github.sha }}' | ||
|
||
on: | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: [ CI-trigger ] | ||
types: [ in_progress ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run: | ||
uses: sysown/proxysql/.github/workflows/ci-builds.yml@GH-Actions | ||
secrets: inherit | ||
with: | ||
trigger: ${{ toJson(github) }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: CI-CodeQL | ||
run-name: '${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} ${{ github.workflow }} ${{ github.event.workflow_run && github.event.workflow_run.head_sha || github.sha }}' | ||
|
||
on: | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: [ CI-trigger ] | ||
types: [ completed ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run: | ||
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }} | ||
uses: sysown/proxysql/.github/workflows/ci-codeql.yml@GH-Actions | ||
secrets: inherit | ||
with: | ||
trigger: ${{ toJson(github) }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: CI-maketest | ||
run-name: '${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} ${{ github.workflow }} ${{ github.event.workflow_run && github.event.workflow_run.head_sha || github.sha }}' | ||
|
||
on: | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: [ CI-trigger ] | ||
types: [ completed ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run: | ||
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }} | ||
uses: sysown/proxysql/.github/workflows/ci-maketest.yml@GH-Actions | ||
secrets: inherit | ||
with: | ||
trigger: ${{ toJson(github) }} | ||
target: ${{ vars.MATRIX_MAKETEST_target }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: CI-package-build | ||
run-name: '${{ github.ref_name }} ${{ github.workflow }} ${{ github.sha }}' | ||
|
||
on: | ||
push: | ||
branches: [ 'v[0-9]+.x','v[0-9]+.[0-9]+','v[0-9]+.[0-9]+.[0-9]+' ] | ||
paths-ignore: | ||
- '.github/**' | ||
- '**.md' | ||
# schedule: | ||
# - cron: '15 13 * * 3' | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run: | ||
uses: sysown/proxysql/.github/workflows/ci-package-build.yml@GH-Actions | ||
secrets: inherit | ||
with: | ||
trigger: ${{ toJson(github) }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: CI-repltests | ||
run-name: '${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} ${{ github.workflow }} ${{ github.event.workflow_run && github.event.workflow_run.head_sha || github.sha }}' | ||
|
||
on: | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: [ CI-trigger ] | ||
types: [ completed ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run: | ||
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }} | ||
uses: sysown/proxysql/.github/workflows/ci-repltests.yml@GH-Actions | ||
secrets: inherit | ||
with: | ||
trigger: ${{ toJson(github) }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: CI-selftests | ||
run-name: '${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} ${{ github.workflow }} ${{ github.event.workflow_run && github.event.workflow_run.head_sha || github.sha }}' | ||
|
||
on: | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: [ CI-trigger ] | ||
types: [ completed ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.workflow_run && github.event.workflow_run.head_branch || github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run: | ||
if: ${{ github.event.workflow_run && github.event.workflow_run.conclusion == 'success' || ! github.event.workflow_run }} | ||
uses: sysown/proxysql/.github/workflows/ci-selftests.yml@GH-Actions | ||
secrets: inherit | ||
with: | ||
trigger: ${{ toJson(github) }} |
Oops, something went wrong.