NPE in PgDecoder if a notice is raised while no query is being execut… #59
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
name: vertx-sql-client (5.x) | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
schedule: | |
- cron: '0 5 * * *' | |
jobs: | |
CI: | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
jdk: 11 | |
profile: 'PostgreSQL-9' | |
- os: ubuntu-latest | |
jdk: 11 | |
profile: 'PostgreSQL-10' | |
- os: ubuntu-latest | |
jdk: 11 | |
profile: 'PostgreSQL-11' | |
- os: ubuntu-latest | |
jdk: 11 | |
profile: 'MySQL-8.0' | |
- os: ubuntu-latest | |
jdk: 11 | |
profile: 'MySQL-5.6' | |
- os: ubuntu-latest | |
jdk: 11 | |
profile: 'MySQL-5.7' | |
- os: ubuntu-latest | |
jdk: 11 | |
profile: 'MariaDB-10.4' | |
- os: ubuntu-latest | |
jdk: 11 | |
profile: 'MSSQL-2017-latest' | |
- os: ubuntu-latest | |
jdk: 11 | |
profile: 'MSSQL-2019-latest' | |
- os: ubuntu-latest | |
jdk: 11 | |
profile: 'DB2-11.5' | |
- os: ubuntu-latest | |
jdk: 11 | |
profile: 'SQL-templates' | |
- os: ubuntu-latest | |
jdk: 17 | |
profile: 'PostgreSQL-11' | |
- os: ubuntu-latest | |
jdk: 17 | |
profile: 'MySQL-5.7' | |
- os: ubuntu-latest | |
jdk: 17 | |
profile: 'MariaDB-10.4' | |
- os: ubuntu-latest | |
jdk: 17 | |
profile: 'MSSQL-2019-latest' | |
- os: ubuntu-latest | |
jdk: 17 | |
profile: 'Oracle-23' | |
uses: ./.github/workflows/ci.yml | |
with: | |
branch: ${{ github.event.pull_request.head.sha || github.ref_name }} | |
jdk: ${{ matrix.jdk }} | |
os: ${{ matrix.os }} | |
profile: ${{ matrix.profile }} | |
deploy: ${{ matrix.jdk == '8' && matrix.os == 'ubuntu-latest' }} | |
secrets: inherit | |
Deploy: | |
name: Deploy to OSSRH | |
if: ${{ github.repository_owner == 'eclipse-vertx' && (github.event_name == 'push' || github.event_name == 'schedule') }} | |
needs: CI | |
uses: ./.github/workflows/deploy.yml | |
with: | |
branch: ${{ github.event.pull_request.head.sha || github.ref_name }} | |
jdk: 11 | |
secrets: inherit |