mirror of
https://github.com/go-gitea/gitea.git
synced 2026-08-01 08:20:36 +00:00
4f363d2748
Cache saves have been rejected since June because the repo sat above its 10 GB allowance, so every PR run fell back to a cache built with an older toolchain and rebuilt the backend from scratch. - go version in the `gobuild` and `golint` keys and `restore-keys` - seeder triggers on `go.mod` and gained `workflow_dispatch` - single writer for the `gomod` cache, the two were racing - new daily `cache-prune` workflow holding the total under a limit - `cache: false` for `setup-go` in release and cron workflows, it held 815 MB - add `workflow_dispatch` so the cache workflows can be triggered on-demand Assisted-by: Claude Code:claude-opus-5
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:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "go.mod" # a toolchain bump invalidates the build caches
|
|
- "go.sum"
|
|
- ".golangci.yml"
|
|
- ".github/actions/go-cache/action.yml"
|
|
- ".github/actions/go-setup/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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
|
|
- uses: ./.github/actions/go-setup
|
|
- 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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
|
|
- uses: ./.github/actions/go-setup
|
|
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 }}
|
|
|
|
# reclaims the caches this run superseded, so the next save still fits in the allowance
|
|
prune:
|
|
needs: [gobuild, lint]
|
|
permissions:
|
|
actions: write
|
|
uses: ./.github/workflows/cache-prune.yml
|