2023-05-28 15:31:52 +02:00
|
|
|
name: testing
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'forgejo*'
|
|
|
|
- 'v*/forgejo*'
|
2024-10-21 07:40:17 +02:00
|
|
|
workflow_dispatch:
|
2023-05-28 15:31:52 +02:00
|
|
|
|
|
|
|
jobs:
|
2024-02-09 11:08:19 +01:00
|
|
|
backend-checks:
|
2024-11-13 22:18:35 +01:00
|
|
|
if: vars.ROLE == 'forgejo-coding' || vars.ROLE == 'forgejo-testing'
|
2023-05-28 15:31:52 +02:00
|
|
|
runs-on: docker
|
|
|
|
container:
|
2024-08-12 16:11:35 +02:00
|
|
|
image: 'code.forgejo.org/oci/node:20-bookworm'
|
2023-05-28 15:31:52 +02:00
|
|
|
steps:
|
2024-03-31 00:22:51 +01:00
|
|
|
- name: event info
|
|
|
|
run: |
|
|
|
|
cat <<'EOF'
|
|
|
|
${{ toJSON(github) }}
|
|
|
|
EOF
|
2024-09-30 15:08:26 +02:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2024-09-30 02:06:28 +02:00
|
|
|
- uses: ./.forgejo/workflows-composite/setup-env
|
2024-09-27 20:47:09 +02: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
|
2024-09-30 02:06:28 +02:00
|
|
|
- uses: ./.forgejo/workflows-composite/build-backend
|
2024-02-25 23:08:09 +01:00
|
|
|
frontend-checks:
|
2024-11-13 22:59:51 +01:00
|
|
|
if: vars.ROLE == 'forgejo-coding' || vars.ROLE == 'forgejo-testing'
|
2024-02-25 23:08:09 +01:00
|
|
|
runs-on: docker
|
|
|
|
container:
|
2024-08-12 16:11:35 +02:00
|
|
|
image: 'code.forgejo.org/oci/node:20-bookworm'
|
2024-02-25 23:08:09 +01:00
|
|
|
steps:
|
2024-09-30 15:08:26 +02:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2024-02-25 23:08:09 +01:00
|
|
|
- run: make deps-frontend
|
|
|
|
- run: make lint-frontend
|
|
|
|
- run: make checks-frontend
|
2024-06-24 07:12:55 +02:00
|
|
|
- run: make test-frontend-coverage
|
2024-02-25 23:08:09 +01:00
|
|
|
- run: make frontend
|
2024-10-01 17:45:38 +02:00
|
|
|
- name: Install zstd for cache saving
|
|
|
|
# works around https://github.com/actions/cache/issues/1169, because the
|
|
|
|
# consuming job has zstd and doesn't restore the cache otherwise
|
|
|
|
run: |
|
|
|
|
apt-get update -qq
|
|
|
|
apt-get -q install -qq -y zstd
|
|
|
|
- name: "Cache frontend build for playwright testing"
|
|
|
|
uses: actions/cache/save@v4
|
|
|
|
with:
|
|
|
|
path: ${{github.workspace}}/public/assets
|
|
|
|
key: frontend-build-${{ github.sha }}
|
2023-05-28 15:31:52 +02:00
|
|
|
test-unit:
|
2024-11-13 22:59:51 +01:00
|
|
|
if: vars.ROLE == 'forgejo-coding' || vars.ROLE == 'forgejo-testing'
|
2023-05-28 15:31:52 +02:00
|
|
|
runs-on: docker
|
2024-02-25 23:08:09 +01:00
|
|
|
needs: [backend-checks, frontend-checks]
|
2023-05-28 15:31:52 +02:00
|
|
|
container:
|
2024-08-12 16:11:35 +02:00
|
|
|
image: 'code.forgejo.org/oci/node:20-bookworm'
|
2023-05-28 15:31:52 +02:00
|
|
|
services:
|
2024-06-04 09:37:59 +02:00
|
|
|
elasticsearch:
|
2024-11-14 23:12:57 +01:00
|
|
|
image: code.forgejo.org/oci/bitnami/elasticsearch:7
|
2024-11-14 17:25:47 +01:00
|
|
|
options: --tmpfs /bitnami/elasticsearch/data
|
2024-06-04 09:37:59 +02:00
|
|
|
env:
|
|
|
|
discovery.type: single-node
|
2024-07-16 08:10:58 +02:00
|
|
|
ES_JAVA_OPTS: "-Xms512m -Xmx512m"
|
2023-05-28 15:31:52 +02:00
|
|
|
minio:
|
2024-11-14 23:12:57 +01:00
|
|
|
image: code.forgejo.org/oci/bitnami/minio:2024.8.17
|
2024-03-04 04:13:59 +01:00
|
|
|
options: >-
|
2024-11-14 17:25:47 +01:00
|
|
|
--hostname gitea.minio --tmpfs /bitnami/minio/data
|
2023-05-28 15:31:52 +02:00
|
|
|
env:
|
2024-03-04 04:13:59 +01:00
|
|
|
MINIO_DOMAIN: minio
|
2023-05-28 15:31:52 +02:00
|
|
|
MINIO_ROOT_USER: 123456
|
|
|
|
MINIO_ROOT_PASSWORD: 12345678
|
|
|
|
steps:
|
2024-09-30 15:08:26 +02:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2024-09-30 02:06:28 +02:00
|
|
|
- uses: ./.forgejo/workflows-composite/setup-env
|
2024-01-22 12:18:06 +01:00
|
|
|
- name: install git >= 2.42
|
2024-09-30 02:06:28 +02:00
|
|
|
uses: ./.forgejo/workflows-composite/apt-install-from
|
2024-09-28 03:39:19 +02:00
|
|
|
with:
|
|
|
|
packages: git
|
2024-07-23 16:45:44 +02:00
|
|
|
- name: test release-notes-assistant.sh
|
|
|
|
run: |
|
|
|
|
apt-get -q install -qq -y jq
|
|
|
|
./release-notes-assistant.sh test_main
|
2024-09-30 02:06:28 +02:00
|
|
|
- uses: ./.forgejo/workflows-composite/build-backend
|
2023-05-28 15:31:52 +02:00
|
|
|
- run: |
|
2023-12-06 23:49:48 +01:00
|
|
|
su forgejo -c 'make test-backend test-check'
|
2024-11-09 18:16:38 +01:00
|
|
|
timeout-minutes: 120
|
2023-05-28 15:31:52 +02:00
|
|
|
env:
|
|
|
|
RACE_ENABLED: 'true'
|
|
|
|
TAGS: bindata
|
2024-06-04 09:37:59 +02:00
|
|
|
TEST_ELASTICSEARCH_URL: http://elasticsearch:9200
|
2024-10-01 17:45:38 +02:00
|
|
|
test-e2e:
|
2024-11-13 22:59:51 +01:00
|
|
|
if: vars.ROLE == 'forgejo-coding' || vars.ROLE == 'forgejo-testing'
|
2024-06-18 14:31:15 +02:00
|
|
|
runs-on: docker
|
|
|
|
needs: [backend-checks, frontend-checks]
|
2024-10-01 17:45:38 +02:00
|
|
|
container:
|
|
|
|
image: 'code.forgejo.org/oci/playwright:latest'
|
|
|
|
steps:
|
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2024-10-01 23:34:22 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 20
|
2024-10-01 17:45:38 +02:00
|
|
|
- uses: ./.forgejo/workflows-composite/setup-env
|
|
|
|
- name: "Restore frontend build"
|
|
|
|
uses: actions/cache/restore@v4
|
|
|
|
id: cache-frontend
|
|
|
|
with:
|
|
|
|
path: ${{github.workspace}}/public/assets
|
|
|
|
key: frontend-build-${{ github.sha }}
|
|
|
|
- name: "Build frontend (if not cached)"
|
|
|
|
if: steps.cache-frontend.outputs.cache-hit != 'true'
|
|
|
|
run: |
|
|
|
|
su forgejo -c 'make deps-frontend frontend'
|
|
|
|
- uses: ./.forgejo/workflows-composite/build-backend
|
2024-10-01 23:34:22 +02:00
|
|
|
- name: Get changed files
|
|
|
|
id: changed-files
|
2024-10-07 03:21:45 +02:00
|
|
|
uses: https://code.forgejo.org/tj-actions/changed-files@v45
|
2024-10-01 23:34:22 +02:00
|
|
|
with:
|
|
|
|
separator: '\n'
|
2024-10-01 17:45:38 +02:00
|
|
|
- run: |
|
|
|
|
su forgejo -c 'make generate test-e2e-sqlite'
|
2024-11-09 18:16:38 +01:00
|
|
|
timeout-minutes: 120
|
2024-10-01 17:45:38 +02:00
|
|
|
env:
|
|
|
|
USE_REPO_TEST_DIR: 1
|
2024-10-24 22:42:21 +02:00
|
|
|
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
|
2024-10-01 23:34:22 +02:00
|
|
|
CHANGED_FILES: ${{steps.changed-files.outputs.all_changed_files}}
|
2024-11-15 09:43:33 +01:00
|
|
|
- name: Upload test artifacts on failure
|
2024-11-12 17:20:36 +01:00
|
|
|
if: failure()
|
|
|
|
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
|
|
|
|
with:
|
2024-11-15 09:43:33 +01:00
|
|
|
name: test-artifacts.zip
|
|
|
|
path: tests/e2e/test-artifacts/
|
2024-11-12 17:20:36 +01:00
|
|
|
retention-days: 3
|
2024-10-01 17:45:38 +02:00
|
|
|
test-remote-cacher:
|
2024-11-13 22:59:51 +01:00
|
|
|
if: vars.ROLE == 'forgejo-coding' || vars.ROLE == 'forgejo-testing'
|
2024-10-01 17:45:38 +02:00
|
|
|
runs-on: docker
|
|
|
|
needs: [backend-checks, frontend-checks, test-unit]
|
2024-06-18 14:31:15 +02:00
|
|
|
container:
|
2024-08-12 16:11:35 +02:00
|
|
|
image: 'code.forgejo.org/oci/node:20-bookworm'
|
2024-11-15 00:48:45 +01:00
|
|
|
name: ${{ format('test-remote-cacher ({0})', matrix.cacher.name) }}
|
2024-06-18 14:31:15 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
cacher:
|
2024-11-15 00:48:45 +01:00
|
|
|
- name: redis
|
2024-11-14 23:12:57 +01:00
|
|
|
image: code.forgejo.org/oci/bitnami/redis:7.2
|
2024-11-14 17:25:47 +01:00
|
|
|
options: --tmpfs /bitnami/redis/data
|
2024-11-15 00:48:45 +01:00
|
|
|
- name: redict
|
|
|
|
image: registry.redict.io/redict:7.3.0-scratch
|
2024-11-14 17:25:47 +01:00
|
|
|
options: --tmpfs /data
|
2024-11-15 00:48:45 +01:00
|
|
|
- name: valkey
|
2024-11-14 23:12:57 +01:00
|
|
|
image: code.forgejo.org/oci/bitnami/valkey:7.2
|
2024-11-14 17:25:47 +01:00
|
|
|
options: --tmpfs /bitnami/redis/data
|
2024-11-15 00:48:45 +01:00
|
|
|
- name: garnet
|
|
|
|
image: ghcr.io/microsoft/garnet-alpine:1.0.14
|
2024-11-14 17:25:47 +01:00
|
|
|
options: --tmpfs /data
|
2024-06-18 14:31:15 +02:00
|
|
|
services:
|
|
|
|
cacher:
|
|
|
|
image: ${{ matrix.cacher.image }}
|
|
|
|
options: ${{ matrix.cacher.options }}
|
|
|
|
steps:
|
2024-09-30 15:08:26 +02:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2024-09-30 02:06:28 +02:00
|
|
|
- uses: ./.forgejo/workflows-composite/setup-env
|
2024-06-18 14:31:15 +02:00
|
|
|
- name: install git >= 2.42
|
2024-09-30 02:06:28 +02:00
|
|
|
uses: ./.forgejo/workflows-composite/apt-install-from
|
2024-09-28 03:39:19 +02:00
|
|
|
with:
|
|
|
|
packages: git
|
2024-09-30 02:06:28 +02:00
|
|
|
- uses: ./.forgejo/workflows-composite/build-backend
|
2024-06-18 14:31:15 +02:00
|
|
|
- run: |
|
|
|
|
su forgejo -c 'make test-remote-cacher test-check'
|
2024-11-09 18:16:38 +01:00
|
|
|
timeout-minutes: 120
|
2024-06-18 14:31:15 +02:00
|
|
|
env:
|
|
|
|
RACE_ENABLED: 'true'
|
|
|
|
TAGS: bindata
|
|
|
|
TEST_REDIS_SERVER: cacher:${{ matrix.cacher.port }}
|
2023-05-28 15:31:52 +02:00
|
|
|
test-mysql:
|
2024-11-13 22:59:51 +01:00
|
|
|
if: vars.ROLE == 'forgejo-coding' || vars.ROLE == 'forgejo-testing'
|
2023-05-28 15:31:52 +02:00
|
|
|
runs-on: docker
|
2024-02-25 23:08:09 +01:00
|
|
|
needs: [backend-checks, frontend-checks]
|
2023-05-28 15:31:52 +02:00
|
|
|
container:
|
2024-08-12 16:11:35 +02:00
|
|
|
image: 'code.forgejo.org/oci/node:20-bookworm'
|
2023-05-28 15:31:52 +02:00
|
|
|
services:
|
|
|
|
mysql:
|
2024-11-14 23:12:57 +01:00
|
|
|
image: 'code.forgejo.org/oci/bitnami/mysql:8.4'
|
2023-05-28 15:31:52 +02:00
|
|
|
env:
|
2024-08-14 08:56:04 +02:00
|
|
|
ALLOW_EMPTY_PASSWORD: yes
|
2023-05-28 15:31:52 +02:00
|
|
|
MYSQL_DATABASE: testgitea
|
2024-08-14 08:56:04 +02:00
|
|
|
#
|
|
|
|
# See also https://codeberg.org/forgejo/forgejo/issues/976
|
|
|
|
#
|
2024-11-14 16:30:07 +01:00
|
|
|
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 --disable-log-bin
|
2024-11-14 17:25:47 +01:00
|
|
|
options: --tmpfs /bitnami/mysql/data
|
2023-05-28 15:31:52 +02:00
|
|
|
steps:
|
2024-09-30 15:08:26 +02:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2024-09-30 02:06:28 +02:00
|
|
|
- uses: ./.forgejo/workflows-composite/setup-env
|
2024-01-22 12:18:06 +01:00
|
|
|
- name: install dependencies & git >= 2.42
|
2024-09-30 02:06:28 +02:00
|
|
|
uses: ./.forgejo/workflows-composite/apt-install-from
|
2024-09-28 03:39:19 +02:00
|
|
|
with:
|
|
|
|
packages: git git-lfs
|
2024-09-30 02:06:28 +02:00
|
|
|
- uses: ./.forgejo/workflows-composite/build-backend
|
2023-05-28 15:31:52 +02:00
|
|
|
- run: |
|
|
|
|
su forgejo -c 'make test-mysql-migration test-mysql'
|
2024-11-09 18:16:38 +01:00
|
|
|
timeout-minutes: 120
|
2023-05-28 15:31:52 +02:00
|
|
|
env:
|
|
|
|
USE_REPO_TEST_DIR: 1
|
|
|
|
test-pgsql:
|
2024-11-13 22:59:51 +01:00
|
|
|
if: vars.ROLE == 'forgejo-coding' || vars.ROLE == 'forgejo-testing'
|
2023-05-28 15:31:52 +02:00
|
|
|
runs-on: docker
|
2024-02-25 23:08:09 +01:00
|
|
|
needs: [backend-checks, frontend-checks]
|
2023-05-28 15:31:52 +02:00
|
|
|
container:
|
2024-08-12 16:11:35 +02:00
|
|
|
image: 'code.forgejo.org/oci/node:20-bookworm'
|
2023-05-28 15:31:52 +02:00
|
|
|
services:
|
|
|
|
minio:
|
2024-11-14 23:12:57 +01:00
|
|
|
image: code.forgejo.org/oci/bitnami/minio:2024.8.17
|
2023-05-28 15:31:52 +02:00
|
|
|
env:
|
2024-03-04 04:13:59 +01:00
|
|
|
MINIO_ROOT_USER: 123456
|
|
|
|
MINIO_ROOT_PASSWORD: 12345678
|
2024-11-14 17:25:47 +01:00
|
|
|
options: --tmpfs /bitnami/minio/data
|
2024-04-24 18:26:34 +02:00
|
|
|
ldap:
|
2024-11-14 23:12:57 +01:00
|
|
|
image: code.forgejo.org/oci/test-openldap:latest
|
2023-05-28 15:31:52 +02:00
|
|
|
pgsql:
|
2024-11-14 21:49:02 +01:00
|
|
|
image: code.forgejo.org/oci/bitnami/postgresql:15
|
2023-05-28 15:31:52 +02:00
|
|
|
env:
|
2024-11-14 21:49:02 +01:00
|
|
|
POSTGRESQL_DATABASE: test
|
|
|
|
POSTGRESQL_PASSWORD: postgres
|
|
|
|
POSTGRESQL_FSYNC: off
|
|
|
|
POSTGRESQL_EXTRA_FLAGS: -c full_page_writes=off
|
|
|
|
options: --tmpfs /bitnami/postgresql
|
2023-05-28 15:31:52 +02:00
|
|
|
steps:
|
2024-09-30 15:08:26 +02:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2024-09-30 02:06:28 +02:00
|
|
|
- uses: ./.forgejo/workflows-composite/setup-env
|
2024-01-22 12:18:06 +01:00
|
|
|
- name: install dependencies & git >= 2.42
|
2024-09-30 02:06:28 +02:00
|
|
|
uses: ./.forgejo/workflows-composite/apt-install-from
|
2024-09-28 03:39:19 +02:00
|
|
|
with:
|
|
|
|
packages: git git-lfs
|
2024-09-30 02:06:28 +02:00
|
|
|
- uses: ./.forgejo/workflows-composite/build-backend
|
2023-05-28 15:31:52 +02:00
|
|
|
- run: |
|
|
|
|
su forgejo -c 'make test-pgsql-migration test-pgsql'
|
2024-11-09 18:16:38 +01:00
|
|
|
timeout-minutes: 120
|
2023-05-28 15:31:52 +02:00
|
|
|
env:
|
|
|
|
RACE_ENABLED: true
|
|
|
|
USE_REPO_TEST_DIR: 1
|
2024-04-24 18:26:34 +02:00
|
|
|
TEST_LDAP: 1
|
2023-05-28 15:31:52 +02:00
|
|
|
test-sqlite:
|
2024-11-13 22:59:51 +01:00
|
|
|
if: vars.ROLE == 'forgejo-coding' || vars.ROLE == 'forgejo-testing'
|
2023-05-28 15:31:52 +02:00
|
|
|
runs-on: docker
|
2024-02-25 23:08:09 +01:00
|
|
|
needs: [backend-checks, frontend-checks]
|
2023-05-28 15:31:52 +02:00
|
|
|
container:
|
2024-08-12 16:11:35 +02:00
|
|
|
image: 'code.forgejo.org/oci/node:20-bookworm'
|
2023-05-28 15:31:52 +02:00
|
|
|
steps:
|
2024-09-30 15:08:26 +02:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2024-09-30 02:06:28 +02:00
|
|
|
- uses: ./.forgejo/workflows-composite/setup-env
|
2024-01-22 12:18:06 +01:00
|
|
|
- name: install dependencies & git >= 2.42
|
2024-09-30 02:06:28 +02:00
|
|
|
uses: ./.forgejo/workflows-composite/apt-install-from
|
2024-09-28 03:39:19 +02:00
|
|
|
with:
|
|
|
|
packages: git git-lfs
|
2024-09-30 02:06:28 +02:00
|
|
|
- uses: ./.forgejo/workflows-composite/build-backend
|
2023-05-28 15:31:52 +02:00
|
|
|
- run: |
|
|
|
|
su forgejo -c 'make test-sqlite-migration test-sqlite'
|
2024-11-09 18:16:38 +01:00
|
|
|
timeout-minutes: 120
|
2023-05-28 15:31:52 +02:00
|
|
|
env:
|
2024-08-26 21:51:41 +02:00
|
|
|
TAGS: sqlite sqlite_unlock_notify
|
2023-05-28 15:31:52 +02:00
|
|
|
RACE_ENABLED: true
|
2024-01-22 12:18:06 +01:00
|
|
|
TEST_TAGS: sqlite sqlite_unlock_notify
|
2023-05-28 15:31:52 +02:00
|
|
|
USE_REPO_TEST_DIR: 1
|
2024-07-03 11:25:45 +02:00
|
|
|
security-check:
|
2024-11-13 22:59:51 +01:00
|
|
|
if: vars.ROLE == 'forgejo-coding' || vars.ROLE == 'forgejo-testing'
|
2024-07-03 11:25:45 +02:00
|
|
|
runs-on: docker
|
|
|
|
needs:
|
|
|
|
- test-sqlite
|
|
|
|
- test-pgsql
|
|
|
|
- test-mysql
|
|
|
|
- test-remote-cacher
|
|
|
|
- test-unit
|
|
|
|
container:
|
2024-08-12 16:11:35 +02:00
|
|
|
image: 'code.forgejo.org/oci/node:20-bookworm'
|
2024-07-03 11:25:45 +02:00
|
|
|
steps:
|
2024-09-30 15:08:26 +02:00
|
|
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
2024-09-30 02:06:28 +02:00
|
|
|
- uses: ./.forgejo/workflows-composite/setup-env
|
2024-09-15 02:08:36 +02:00
|
|
|
- run: su forgejo -c 'make deps-backend deps-tools'
|
|
|
|
- run: su forgejo -c 'make security-check'
|