name: testing
on:
pull_request:
push:
branches:
- 'forgejo*'
- 'v*/forgejo*'
jobs:
lint-backend:
runs-on: docker
steps:
- uses: https://code.forgejo.org/actions/checkout@v3
- uses: https://code.forgejo.org/actions/setup-go@v4
with:
go-version: "1.20"
check-latest: true
- run: make deps-backend deps-tools
- run: make lint-backend
env:
TAGS: bindata sqlite sqlite_unlock_notify
checks-backend:
- run: make --always-make checks-backend # ensure the "go-licenses" make target runs
test-unit:
needs: [lint-backend, checks-backend]
container:
image: codeberg.org/forgejo/test_env:main
- run: |
git config --add safe.directory '*'
chown -R gitea:gitea . /go
su gitea -c 'make deps-backend'
su gitea -c 'make backend'
TAGS: bindata
su gitea -c 'make unit-test-coverage test-check'
timeout-minutes: 50
RACE_ENABLED: 'true'
test-mysql:
services:
mysql8:
image: mysql:8-debian
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']
su gitea -c 'make test-mysql8-migration test-mysql8'
USE_REPO_TEST_DIR: 1
test-pgsql:
pgsql:
image: postgres:15
POSTGRES_DB: test
POSTGRES_PASSWORD: postgres
- "5432:5432"
su gitea -c 'make test-pgsql-migration test-pgsql'
TAGS: bindata gogit
RACE_ENABLED: true
TEST_TAGS: gogit
test-sqlite:
TAGS: bindata gogit sqlite sqlite_unlock_notify
su gitea -c 'make test-sqlite-migration test-sqlite'
TEST_TAGS: gogit sqlite sqlite_unlock_notify