Skip to content

Commit f8203b7

Browse files
committed
remove mariadb 11.x and 12.x from build matrix
reason: github actions fail to start them with error: "mariadbd: io_uring_queue_init() failed with EPERM: sysctl kernel.io_uring_disabled has the value 2, or 1 and the user of the process is not a member of sysctl kernel.io_uring_group. (see man 2 io_uring_setup)." the internet wisdom says to disable io_uring for mariadb, because github ubuntu runners disable it at kernel level. i could not find a way to pass "skip-innodb-use-native-aio" to mariadb using github actions.
1 parent 57c75aa commit f8203b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
matrix:
99
os: [ ubuntu-latest ]
1010
java: [ '21', '23', '25' ]
11-
db: [ 'mysql:8.0', 'mysql:8.4', 'mariadb:10.6.14', 'mariadb:11.8.5', 'mariadb:12.1.2']
11+
db: [ 'mysql:8.0', 'mysql:8.4', 'mariadb:10.6.14']
1212
runs-on: ${{ matrix.os }}
1313
services:
1414
mysql:

0 commit comments

Comments
 (0)