Skip to content

Commit

Permalink
Empty branch with no history
Browse files Browse the repository at this point in the history
  • Loading branch information
mirostauder committed Nov 29, 2024
0 parents commit a324386
Show file tree
Hide file tree
Showing 21 changed files with 494 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/issue_template.md
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!
40 changes: 40 additions & 0 deletions .github/workflows/CI-3p-django-framework.yml
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 }}
40 changes: 40 additions & 0 deletions .github/workflows/CI-3p-laravel-framework.yml
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 }}
22 changes: 22 additions & 0 deletions .github/workflows/CI-3p-mariadb-connector-c.yml
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 }}
22 changes: 22 additions & 0 deletions .github/workflows/CI-3p-mysql-connector-j.yml
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 }}
22 changes: 22 additions & 0 deletions .github/workflows/CI-3p-php-pdo-mysql.yml
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 }}
22 changes: 22 additions & 0 deletions .github/workflows/CI-3p-postgresql.yml
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 }}
40 changes: 40 additions & 0 deletions .github/workflows/CI-3p-sqlalchemy.yml
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 }}
20 changes: 20 additions & 0 deletions .github/workflows/CI-basictests.yml
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) }}
19 changes: 19 additions & 0 deletions .github/workflows/CI-builds.yml
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) }}
20 changes: 20 additions & 0 deletions .github/workflows/CI-codeql.yml
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) }}
21 changes: 21 additions & 0 deletions .github/workflows/CI-maketest.yml
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 }}
23 changes: 23 additions & 0 deletions .github/workflows/CI-package-build.yml
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) }}
20 changes: 20 additions & 0 deletions .github/workflows/CI-repltests.yml
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) }}
20 changes: 20 additions & 0 deletions .github/workflows/CI-selftests.yml
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) }}
Loading

0 comments on commit a324386

Please sign in to comment.