mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
d7c09d9cc8
(cherry picked from commit3ff59b5379
) (cherry picked from commit8af826a6f7
)
36 lines
963 B
YAML
36 lines
963 B
YAML
name: testing SQLite
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- 'forgejo*'
|
|
- 'v*/forgejo*'
|
|
|
|
jobs:
|
|
test-sqlite:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: codeberg.org/forgejo/test_env:main
|
|
steps:
|
|
- uses: https://code.forgejo.org/actions/checkout@v3
|
|
- uses: https://code.forgejo.org/actions/setup-go@v4
|
|
with:
|
|
go-version: ">=1.20.0"
|
|
- run: |
|
|
git config --add safe.directory '*'
|
|
chown -R gitea:gitea . /go
|
|
- run: |
|
|
su gitea -c 'make deps-backend'
|
|
- run: |
|
|
su gitea -c 'make backend'
|
|
env:
|
|
TAGS: bindata gogit sqlite sqlite_unlock_notify
|
|
- run: |
|
|
su gitea -c 'make test-sqlite-migration test-sqlite'
|
|
timeout-minutes: 50
|
|
env:
|
|
TAGS: bindata gogit sqlite sqlite_unlock_notify
|
|
RACE_ENABLED: true
|
|
TEST_TAGS: gogit sqlite sqlite_unlock_notify
|
|
USE_REPO_TEST_DIR: 1
|