mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-23 05:42:33 +09:00
Critical path ~25:42 → ~19:56 (−22%), ~0% CI minutes. - `test-pgsql` shards 2-way. Branch protection: replace `test-pgsql` with `test-pgsql-shards (1)` + `test-pgsql-shards (2)`; `test-unit`, sqlite/mysql/mssql unchanged — pgsql dominates the critical path. - `test-unit` runs `bindata` then `bindata gogit` sequentially. cache-seeder pre-warms the race-instrumented test compile cache and the integration test binary so PR jobs warm-start. - Cache writes restricted to cache-seeder; PR jobs use `actions/cache/restore`. Defends against PR cache poisoning and frees the 10 GB cap from PR churn. - `go-cache` action: dropped the `cache-name` input. One gobuild cache, one golangci-lint cache. Seeder lint job restores but doesn't save gobuild, so only one writer populates it. - `tools/test-integration.sh` shards the integration binary via `-test.list`; `TestMain` short-circuits DB init in list mode. `TestAPILFSNotStarted` / `TestAPILFSLocksNotStarted` switched to `test.MockVariableValue` — latent `setting.LFS.StartServer` global-state leak uncovered by sharding. --- This PR was written with the help of Claude Opus 4.7 --------- Signed-off-by: silverwind <me@silverwind.io> Co-authored-by: Claude (Opus 4.7) <noreply@anthropic.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: Nicolas <bircni@icloud.com>
82 lines
2.5 KiB
YAML
82 lines
2.5 KiB
YAML
# Populates main's cache scope so PR runs warm-start from it. Saves the go
|
|
# module, go build (incl. test compile), and golangci-lint caches.
|
|
#
|
|
# Caches are ref-scoped: PR runs read their own scope then fall back to the
|
|
# base branch. Per .github/actions/go-cache/action.yml, PRs are restore-only,
|
|
# so push-to-main is the only opportunity to populate the fallback scope.
|
|
|
|
name: cache-seeder
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "go.sum"
|
|
- ".golangci.yml"
|
|
- ".github/actions/go-cache/action.yml"
|
|
- ".github/workflows/cache-seeder.yml"
|
|
|
|
concurrency:
|
|
group: cache-seeder
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
gobuild:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
|
|
with:
|
|
go-version-file: go.mod
|
|
check-latest: true
|
|
cache: false
|
|
- uses: ./.github/actions/go-cache
|
|
- run: make deps-backend deps-tools
|
|
- run: TAGS="bindata" make backend
|
|
- run: TAGS="bindata gogit" GOEXPERIMENT="" make backend
|
|
- name: warm test compile cache (bindata)
|
|
env:
|
|
TAGS: bindata
|
|
GOTEST_FLAGS: -race -list=^$$ -count=1
|
|
run: make test-backend
|
|
- name: warm test compile cache (bindata gogit)
|
|
env:
|
|
TAGS: bindata gogit
|
|
GOEXPERIMENT:
|
|
GOTEST_FLAGS: -race -list=^$$ -count=1
|
|
run: make test-backend
|
|
- name: warm integration compile cache
|
|
run: |
|
|
TAGS="bindata" make test-integration-compile
|
|
TAGS="bindata gogit" GOEXPERIMENT="" make test-integration-compile
|
|
TAGS="bindata gogit" GOTEST_FLAGS="-race" make test-integration-compile
|
|
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- { tags: "bindata", target: "lint-backend" }
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
|
|
with:
|
|
go-version-file: go.mod
|
|
check-latest: true
|
|
cache: false
|
|
- uses: ./.github/actions/go-cache
|
|
with:
|
|
lint-cache: "true"
|
|
- run: make deps-backend deps-tools
|
|
- run: make generate-go
|
|
env:
|
|
TAGS: ${{ matrix.tags }}
|
|
- run: make ${{ matrix.target }}
|
|
env:
|
|
TAGS: ${{ matrix.tags }}
|