2023-05-28 13:31:52 +00:00
|
|
|
name: testing
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'forgejo*'
|
|
|
|
- 'v*/forgejo*'
|
|
|
|
|
|
|
|
jobs:
|
2024-02-09 10:08:19 +00:00
|
|
|
backend-checks:
|
2023-12-28 16:23:09 +00:00
|
|
|
if: ${{ !startsWith(vars.ROLE, 'forgejo-') }}
|
2023-05-28 13:31:52 +00:00
|
|
|
runs-on: docker
|
|
|
|
container:
|
2024-08-12 14:11:35 +00:00
|
|
|
image: 'code.forgejo.org/oci/node:20-bookworm'
|
2023-05-28 13:31:52 +00:00
|
|
|
steps:
|
2024-03-30 23:22:51 +00:00
|
|
|
- name: event info
|
|
|
|
run: |
|
|
|
|
cat <<'EOF'
|
|
|
|
${{ toJSON(github) }}
|
|
|
|
EOF
|
2024-09-30 13:08:26 +00:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2024-09-27 18:44:22 +00:00
|
|
|
- uses: ./.forgejo/workflows/composite/setup-env
|
2024-09-27 18:47:09 +00:00
|
|
|
- run: su forgejo -c 'make deps-backend deps-tools'
|
|
|
|
- run: su forgejo -c 'make --always-make -j$(nproc) lint-backend tidy-check swagger-check fmt-check swagger-validate' # ensure the "go-licenses" make target runs
|
|
|
|
- uses: ./.forgejo/workflows/composite/build-backend
|
2024-02-25 22:08:09 +00:00
|
|
|
frontend-checks:
|
|
|
|
if: ${{ !startsWith(vars.ROLE, 'forgejo-') }}
|
|
|
|
runs-on: docker
|
|
|
|
container:
|
2024-08-12 14:11:35 +00:00
|
|
|
image: 'code.forgejo.org/oci/node:20-bookworm'
|
2024-02-25 22:08:09 +00:00
|
|
|
steps:
|
2024-09-30 13:08:26 +00:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2024-02-25 22:08:09 +00:00
|
|
|
- run: make deps-frontend
|
|
|
|
- run: make lint-frontend
|
|
|
|
- run: make checks-frontend
|
2024-06-24 05:12:55 +00:00
|
|
|
- run: make test-frontend-coverage
|
2024-02-25 22:08:09 +00:00
|
|
|
- run: make frontend
|
2023-05-28 13:31:52 +00:00
|
|
|
test-unit:
|
2023-12-28 16:23:09 +00:00
|
|
|
if: ${{ !startsWith(vars.ROLE, 'forgejo-') }}
|
2023-05-28 13:31:52 +00:00
|
|
|
runs-on: docker
|
2024-02-25 22:08:09 +00:00
|
|
|
needs: [backend-checks, frontend-checks]
|
2023-05-28 13:31:52 +00:00
|
|
|
container:
|
2024-08-12 14:11:35 +00:00
|
|
|
image: 'code.forgejo.org/oci/node:20-bookworm'
|
2023-05-28 13:31:52 +00:00
|
|
|
services:
|
2024-06-04 07:37:59 +00:00
|
|
|
elasticsearch:
|
2024-08-14 06:56:04 +00:00
|
|
|
image: docker.io/bitnami/elasticsearch:7
|
2024-06-04 07:37:59 +00:00
|
|
|
env:
|
|
|
|
discovery.type: single-node
|
2024-07-16 06:10:58 +00:00
|
|
|
ES_JAVA_OPTS: "-Xms512m -Xmx512m"
|
2023-05-28 13:31:52 +00:00
|
|
|
minio:
|
2024-08-18 00:02:17 +00:00
|
|
|
image: docker.io/bitnami/minio:2024.8.17
|
2024-03-04 03:13:59 +00:00
|
|
|
options: >-
|
|
|
|
--hostname gitea.minio
|
2023-05-28 13:31:52 +00:00
|
|
|
env:
|
2024-03-04 03:13:59 +00:00
|
|
|
MINIO_DOMAIN: minio
|
2023-05-28 13:31:52 +00:00
|
|
|
MINIO_ROOT_USER: 123456
|
|
|
|
MINIO_ROOT_PASSWORD: 12345678
|
|
|
|
steps:
|
2024-09-30 13:08:26 +00:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2024-09-27 18:44:22 +00:00
|
|
|
- uses: ./.forgejo/workflows/composite/setup-env
|
2024-01-22 11:18:06 +00:00
|
|
|
- name: install git >= 2.42
|
2024-09-28 01:39:19 +00:00
|
|
|
uses: ./.forgejo/workflows/composite/apt-install-from
|
|
|
|
with:
|
|
|
|
packages: git
|
2024-07-23 14:45:44 +00:00
|
|
|
- name: test release-notes-assistant.sh
|
|
|
|
run: |
|
|
|
|
apt-get -q install -qq -y jq
|
|
|
|
./release-notes-assistant.sh test_main
|
2024-09-27 18:47:09 +00:00
|
|
|
- uses: ./.forgejo/workflows/composite/build-backend
|
2023-05-28 13:31:52 +00:00
|
|
|
- run: |
|
2023-12-06 22:49:48 +00:00
|
|
|
su forgejo -c 'make test-backend test-check'
|
2023-05-28 13:31:52 +00:00
|
|
|
timeout-minutes: 50
|
|
|
|
env:
|
|
|
|
RACE_ENABLED: 'true'
|
|
|
|
TAGS: bindata
|
2024-06-04 07:37:59 +00:00
|
|
|
TEST_ELASTICSEARCH_URL: http://elasticsearch:9200
|
2024-06-18 12:31:15 +00:00
|
|
|
test-remote-cacher:
|
|
|
|
if: ${{ !startsWith(vars.ROLE, 'forgejo-') }}
|
|
|
|
runs-on: docker
|
|
|
|
needs: [backend-checks, frontend-checks]
|
|
|
|
container:
|
2024-08-12 14:11:35 +00:00
|
|
|
image: 'code.forgejo.org/oci/node:20-bookworm'
|
2024-06-18 12:31:15 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
cacher:
|
|
|
|
# redis
|
2024-08-14 06:56:04 +00:00
|
|
|
- image: docker.io/bitnami/redis:7.2
|
2024-06-18 12:31:15 +00:00
|
|
|
port: 6379
|
|
|
|
# redict
|
2024-09-11 13:45:07 +00:00
|
|
|
- image: registry.redict.io/redict:7.3.0-scratch
|
|
|
|
port: 6379
|
2024-07-09 04:25:03 +00:00
|
|
|
# valkey
|
2024-08-14 06:56:04 +00:00
|
|
|
- image: docker.io/bitnami/valkey:7.2
|
2024-07-09 04:25:03 +00:00
|
|
|
port: 6379
|
2024-06-18 12:31:15 +00:00
|
|
|
# garnet
|
|
|
|
- image: ghcr.io/microsoft/garnet-alpine:1.0.14
|
|
|
|
port: 6379
|
|
|
|
services:
|
|
|
|
cacher:
|
|
|
|
image: ${{ matrix.cacher.image }}
|
|
|
|
options: ${{ matrix.cacher.options }}
|
|
|
|
steps:
|
2024-09-30 13:08:26 +00:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2024-09-27 18:44:22 +00:00
|
|
|
- uses: ./.forgejo/workflows/composite/setup-env
|
2024-06-18 12:31:15 +00:00
|
|
|
- name: install git >= 2.42
|
2024-09-28 01:39:19 +00:00
|
|
|
uses: ./.forgejo/workflows/composite/apt-install-from
|
|
|
|
with:
|
|
|
|
packages: git
|
2024-09-27 18:47:09 +00:00
|
|
|
- uses: ./.forgejo/workflows/composite/build-backend
|
2024-06-18 12:31:15 +00:00
|
|
|
- run: |
|
|
|
|
su forgejo -c 'make test-remote-cacher test-check'
|
|
|
|
timeout-minutes: 50
|
|
|
|
env:
|
|
|
|
RACE_ENABLED: 'true'
|
|
|
|
TAGS: bindata
|
|
|
|
TEST_REDIS_SERVER: cacher:${{ matrix.cacher.port }}
|
2023-05-28 13:31:52 +00:00
|
|
|
test-mysql:
|
2023-12-28 16:23:09 +00:00
|
|
|
if: ${{ !startsWith(vars.ROLE, 'forgejo-') }}
|
2023-05-28 13:31:52 +00:00
|
|
|
runs-on: docker
|
2024-02-25 22:08:09 +00:00
|
|
|
needs: [backend-checks, frontend-checks]
|
2023-05-28 13:31:52 +00:00
|
|
|
container:
|
2024-08-12 14:11:35 +00:00
|
|
|
image: 'code.forgejo.org/oci/node:20-bookworm'
|
2023-05-28 13:31:52 +00:00
|
|
|
services:
|
|
|
|
mysql:
|
2024-08-15 00:03:35 +00:00
|
|
|
image: 'docker.io/bitnami/mysql:8.4'
|
2023-05-28 13:31:52 +00:00
|
|
|
env:
|
2024-08-14 06:56:04 +00:00
|
|
|
ALLOW_EMPTY_PASSWORD: yes
|
2023-05-28 13:31:52 +00:00
|
|
|
MYSQL_DATABASE: testgitea
|
2024-08-14 06:56:04 +00:00
|
|
|
#
|
|
|
|
# See also https://codeberg.org/forgejo/forgejo/issues/976
|
|
|
|
#
|
|
|
|
MYSQL_EXTRA_FLAGS: --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
|
2023-05-28 13:31:52 +00:00
|
|
|
steps:
|
2024-09-30 13:08:26 +00:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2024-09-27 18:44:22 +00:00
|
|
|
- uses: ./.forgejo/workflows/composite/setup-env
|
2024-01-22 11:18:06 +00:00
|
|
|
- name: install dependencies & git >= 2.42
|
2024-09-28 01:39:19 +00:00
|
|
|
uses: ./.forgejo/workflows/composite/apt-install-from
|
|
|
|
with:
|
|
|
|
packages: git git-lfs
|
2024-09-27 18:47:09 +00:00
|
|
|
- uses: ./.forgejo/workflows/composite/build-backend
|
2023-05-28 13:31:52 +00:00
|
|
|
- run: |
|
|
|
|
su forgejo -c 'make test-mysql-migration test-mysql'
|
|
|
|
timeout-minutes: 50
|
|
|
|
env:
|
|
|
|
USE_REPO_TEST_DIR: 1
|
|
|
|
test-pgsql:
|
2023-12-28 16:23:09 +00:00
|
|
|
if: ${{ !startsWith(vars.ROLE, 'forgejo-') }}
|
2023-05-28 13:31:52 +00:00
|
|
|
runs-on: docker
|
2024-02-25 22:08:09 +00:00
|
|
|
needs: [backend-checks, frontend-checks]
|
2023-05-28 13:31:52 +00:00
|
|
|
container:
|
2024-08-12 14:11:35 +00:00
|
|
|
image: 'code.forgejo.org/oci/node:20-bookworm'
|
2023-05-28 13:31:52 +00:00
|
|
|
services:
|
|
|
|
minio:
|
2024-08-18 00:02:17 +00:00
|
|
|
image: docker.io/bitnami/minio:2024.8.17
|
2023-05-28 13:31:52 +00:00
|
|
|
env:
|
2024-03-04 03:13:59 +00:00
|
|
|
MINIO_ROOT_USER: 123456
|
|
|
|
MINIO_ROOT_PASSWORD: 12345678
|
2024-04-24 16:26:34 +00:00
|
|
|
ldap:
|
|
|
|
image: docker.io/gitea/test-openldap:latest
|
2023-05-28 13:31:52 +00:00
|
|
|
pgsql:
|
2024-08-12 14:15:53 +00:00
|
|
|
image: 'code.forgejo.org/oci/postgres:15'
|
2023-05-28 13:31:52 +00:00
|
|
|
env:
|
|
|
|
POSTGRES_DB: test
|
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
steps:
|
2024-09-30 13:08:26 +00:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2024-09-27 18:44:22 +00:00
|
|
|
- uses: ./.forgejo/workflows/composite/setup-env
|
2024-01-22 11:18:06 +00:00
|
|
|
- name: install dependencies & git >= 2.42
|
2024-09-28 01:39:19 +00:00
|
|
|
uses: ./.forgejo/workflows/composite/apt-install-from
|
|
|
|
with:
|
|
|
|
packages: git git-lfs
|
2024-09-27 18:47:09 +00:00
|
|
|
- uses: ./.forgejo/workflows/composite/build-backend
|
2023-05-28 13:31:52 +00:00
|
|
|
- run: |
|
|
|
|
su forgejo -c 'make test-pgsql-migration test-pgsql'
|
|
|
|
timeout-minutes: 50
|
|
|
|
env:
|
|
|
|
RACE_ENABLED: true
|
|
|
|
USE_REPO_TEST_DIR: 1
|
2024-04-24 16:26:34 +00:00
|
|
|
TEST_LDAP: 1
|
2023-05-28 13:31:52 +00:00
|
|
|
test-sqlite:
|
2023-12-28 16:23:09 +00:00
|
|
|
if: ${{ !startsWith(vars.ROLE, 'forgejo-') }}
|
2023-05-28 13:31:52 +00:00
|
|
|
runs-on: docker
|
2024-02-25 22:08:09 +00:00
|
|
|
needs: [backend-checks, frontend-checks]
|
2023-05-28 13:31:52 +00:00
|
|
|
container:
|
2024-08-12 14:11:35 +00:00
|
|
|
image: 'code.forgejo.org/oci/node:20-bookworm'
|
2023-05-28 13:31:52 +00:00
|
|
|
steps:
|
2024-09-30 13:08:26 +00:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2024-09-27 18:44:22 +00:00
|
|
|
- uses: ./.forgejo/workflows/composite/setup-env
|
2024-01-22 11:18:06 +00:00
|
|
|
- name: install dependencies & git >= 2.42
|
2024-09-28 01:39:19 +00:00
|
|
|
uses: ./.forgejo/workflows/composite/apt-install-from
|
|
|
|
with:
|
|
|
|
packages: git git-lfs
|
2024-09-27 18:47:09 +00:00
|
|
|
- uses: ./.forgejo/workflows/composite/build-backend
|
2023-05-28 13:31:52 +00:00
|
|
|
- run: |
|
|
|
|
su forgejo -c 'make test-sqlite-migration test-sqlite'
|
|
|
|
timeout-minutes: 50
|
|
|
|
env:
|
2024-08-26 19:51:41 +00:00
|
|
|
TAGS: sqlite sqlite_unlock_notify
|
2023-05-28 13:31:52 +00:00
|
|
|
RACE_ENABLED: true
|
2024-01-22 11:18:06 +00:00
|
|
|
TEST_TAGS: sqlite sqlite_unlock_notify
|
2023-05-28 13:31:52 +00:00
|
|
|
USE_REPO_TEST_DIR: 1
|
2024-07-03 09:25:45 +00:00
|
|
|
security-check:
|
|
|
|
if: ${{ !startsWith(vars.ROLE, 'forgejo-') }}
|
|
|
|
runs-on: docker
|
|
|
|
needs:
|
|
|
|
- test-sqlite
|
|
|
|
- test-pgsql
|
|
|
|
- test-mysql
|
|
|
|
- test-remote-cacher
|
|
|
|
- test-unit
|
|
|
|
container:
|
2024-08-12 14:11:35 +00:00
|
|
|
image: 'code.forgejo.org/oci/node:20-bookworm'
|
2024-07-03 09:25:45 +00:00
|
|
|
steps:
|
2024-09-30 13:08:26 +00:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2024-09-27 18:44:22 +00:00
|
|
|
- uses: ./.forgejo/workflows/composite/setup-env
|
2024-09-15 00:08:36 +00:00
|
|
|
- run: su forgejo -c 'make deps-backend deps-tools'
|
|
|
|
- run: su forgejo -c 'make security-check'
|