@@ -697,7 +697,7 @@ jobs:
697
697
matrix :
698
698
branch : ${{ fromJson(needs.GENERATE_MATRIX.outputs.branches) }}
699
699
exclude :
700
- - branch : { name: 'PHP-80', ref: 'PHP-8.0' }
700
+ - branch : { name: 'PHP-80', ref: 'PHP-8.0', major: 8, minor: 0 }
701
701
name : " ${{ matrix.branch.name }}_LIBMYSQLCLIENT"
702
702
runs-on : ubuntu-${{ matrix.branch.version.minor >= 3 && '22.04' || '20.04' }}
703
703
steps :
@@ -715,30 +715,23 @@ jobs:
715
715
mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS test"
716
716
# Ensure local_infile tests can run.
717
717
mysql -uroot -proot -e "SET GLOBAL local_infile = true"
718
- # Does not support caching_sha2_auth :(
719
- # - name: Build mysql-5.6
720
- # uses: ./.github/actions/build-libmysqlclient
721
- # with:
722
- # libmysql: mysql-5.6.49-linux-glibc2.12-x86_64.tar.gz
723
- # - name: Test mysql-5.6
724
- # uses: ./.github/actions/test-libmysqlclient
725
- - name : Build mysql-5.7
718
+ - name : Build mysql-8.0
726
719
uses : ./.github/actions/build-libmysqlclient
727
720
with :
728
- libmysql : mysql-5.7.44-linux-glibc2.12-x86_64.tar.gz
721
+ configurationParameters : --enable-werror
722
+ libmysql : mysql-8.0.35-linux-glibc2.28-x86_64.tar.xz
729
723
withMysqli : ${{ matrix.branch.ref == 'PHP-8.1' }}
730
- - name : Test mysql-5.7
724
+ - name : Test mysql-8.0
731
725
uses : ./.github/actions/test-libmysqlclient
732
726
with :
733
727
withMysqli : ${{ matrix.branch.ref == 'PHP-8.1' }}
734
- - name : Build mysql-8.0
728
+ - name : Build mysql-8.2
735
729
uses : ./.github/actions/build-libmysqlclient
736
730
with :
737
- # FIXME: There are new warnings
738
- # configurationParameters: --enable-werror
739
- libmysql : mysql-8.0.35-linux-glibc2.12-x86_64.tar.xz
731
+ configurationParameters : --enable-werror
732
+ libmysql : mysql-8.2.0-linux-glibc2.28-x86_64.tar.xz
740
733
withMysqli : ${{ matrix.branch.ref == 'PHP-8.1' }}
741
- - name : Test mysql-8.0
734
+ - name : Test mysql-8.2
742
735
uses : ./.github/actions/test-libmysqlclient
743
736
with :
744
737
withMysqli : ${{ matrix.branch.ref == 'PHP-8.1' }}
0 commit comments