Skip to content

Commit 58b5f7c

Browse files
committed
Don't test libmysqlclient with mysqli on mysql 8.4
There are compile errors with 8.4 that we are no longer fixing.
1 parent 9acf0a4 commit 58b5f7c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/nightly.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -814,15 +814,17 @@ jobs:
814814
with:
815815
withMysqli: ${{ inputs.libmysqlclient_with_mysqli }}
816816
- name: Build mysql-8.4
817-
uses: ./.github/actions/build-libmysqlclient
817+
if: ${{ !inputs.libmysqlclient_with_mysqli }}
818+
uses: ./.github/actions/build-libmysqlclient'
818819
with:
819-
configurationParameters: ${{ !inputs.libmysqlclient_with_mysqli && '--enable-werror' || '' }}
820+
configurationParameters: --enable-werror
820821
libmysql: mysql-8.4.0-linux-glibc2.28-x86_64.tar.xz
821-
withMysqli: ${{ inputs.libmysqlclient_with_mysqli }}
822+
withMysqli: false
822823
- name: Test mysql-8.4
824+
if: ${{ !inputs.libmysqlclient_with_mysqli }}
823825
uses: ./.github/actions/test-libmysqlclient
824826
with:
825-
withMysqli: ${{ inputs.libmysqlclient_with_mysqli }}
827+
withMysqli: false
826828
- name: Verify generated files are up to date
827829
uses: ./.github/actions/verify-generated-files
828830
- name: Notify Slack

0 commit comments

Comments
 (0)