Skip to content

Commit

Permalink
Attempt to update CI to MySQL 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cmb69 committed Jan 26, 2025
1 parent 75d7684 commit 2768f61
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
services:
mysql:
image: mysql:8.3
image: mysql:8.4
ports:
- 3306:3306
env:
Expand Down Expand Up @@ -85,6 +85,9 @@ jobs:
uses: actions/checkout@v4
- name: apt
uses: ./.github/actions/apt-x64
- name: MySQL
run: |
sudo mysql -e "SELECT user, host, plugin from mysql.user WHERE plugin='mysql_native_password';"
- name: System info
run: |
echo "::group::Show host CPU info"
Expand Down Expand Up @@ -137,7 +140,7 @@ jobs:
if: ${{ !matrix.asan }}
uses: ./.github/actions/verify-generated-files
LINUX_X32:
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
if: false
name: LINUX_X32_DEBUG_ZTS
runs-on: ubuntu-latest
timeout-minutes: 50
Expand Down Expand Up @@ -193,7 +196,7 @@ jobs:
-d zend_extension=opcache.so
-d opcache.enable_cli=1
MACOS_DEBUG_NTS:
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
if: false
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -234,7 +237,7 @@ jobs:
- name: Verify generated files are up to date
uses: ./.github/actions/verify-generated-files
WINDOWS:
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
if: false
name: WINDOWS_X64_ZTS
runs-on: windows-2022
timeout-minutes: 50
Expand Down Expand Up @@ -369,6 +372,7 @@ jobs:
retention-days: 30
FREEBSD:
name: FREEBSD
if: false
runs-on: ubuntu-latest
steps:
- name: git checkout
Expand Down

0 comments on commit 2768f61

Please sign in to comment.