Merge pull request '[CI] Forgejo Actions based release process (squash) MySQL optimization' (#995) from earl-warren/forgejo:wip-v1.20-ci-actions into v1.20/forgejo-ci

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/995
This commit is contained in:
Earl Warren 2023-07-08 20:20:16 +00:00
commit 93dcbda11c

View file

@ -62,12 +62,16 @@ jobs:
image: codeberg.org/forgejo/test_env:main
services:
mysql8:
image: mysql:8
image: mysql:8-debian
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: testgitea
ports:
- "3306:3306"
#
# See also https://codeberg.org/forgejo/forgejo/issues/976
#
cmd: ['mysqld', '--innodb-adaptive-flushing=OFF', '--innodb-buffer-pool-size=4G', '--innodb-log-buffer-size=128M', '--innodb-flush-log-at-trx-commit=0', '--innodb-flush-log-at-timeout=30', '--innodb-flush-method=nosync', '--innodb-fsync-threshold=1000000000']
steps:
- uses: https://code.forgejo.org/actions/checkout@v3
- uses: https://code.forgejo.org/actions/setup-go@v4