Skip to content

Commit

Permalink
CI: Update for MySQL 9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden committed Jan 3, 2025
1 parent 6d9f97c commit dfdabf3
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,14 @@ jobs:
client: "8.4"
server: "8.0"
- os: ubuntu-22.04
client: "9.0"
client: "9.1"
server: "8.4"
- os: ubuntu-22.04
client: "9.0"
server: "9.0"
client: "9.1"
server: "9.1"
- os: ubuntu-24.04
client: "9.1"
server: "9.1"
runs-on: ${{ matrix.os }}
services:
mysql:
Expand Down Expand Up @@ -60,15 +63,15 @@ jobs:
run: |
sudo debconf-set-selections <<EOF
mysql-apt-config mysql-apt-config/select-server select mysql-8.4-lts
- if: matrix.client == '9.0'
- if: matrix.client == '9.1'
run: |
sudo debconf-set-selections <<EOF
mysql-apt-config mysql-apt-config/select-server select mysql-innovation
EOF
- name: "Setup mysql libs"
run: |
wget https://dev.mysql.com/get/mysql-apt-config_0.8.30-1_all.deb
DEBIAN_FRONTEND="noninteractive" sudo dpkg -i mysql-apt-config_0.8.30-1_all.deb
wget https://dev.mysql.com/get/mysql-apt-config_0.8.33-1_all.deb
DEBIAN_FRONTEND="noninteractive" sudo dpkg -i mysql-apt-config_0.8.33-1_all.deb
sudo apt update
sudo apt install -y libmysqlclient-dev
- name: "Run build"
Expand Down

0 comments on commit dfdabf3

Please sign in to comment.