mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-03-09 16:02:06 +01:00
Some checks failed
/ release (push) Waiting to run
testing / backend-checks (push) Waiting to run
testing / frontend-checks (push) Waiting to run
testing / test-unit (push) Blocked by required conditions
testing / test-e2e (push) Blocked by required conditions
testing / test-remote-cacher (redis) (push) Blocked by required conditions
testing / test-remote-cacher (valkey) (push) Blocked by required conditions
testing / test-remote-cacher (garnet) (push) Blocked by required conditions
testing / test-remote-cacher (redict) (push) Blocked by required conditions
testing / test-mysql (push) Blocked by required conditions
testing / test-pgsql (push) Blocked by required conditions
testing / test-sqlite (push) Blocked by required conditions
testing / security-check (push) Blocked by required conditions
Integration tests for the release process / release-simulation (push) Has been cancelled
- replace `code.forgejo.org` ->`data.forgejo.org` on docker images - add `https://data.forgejo.org/` to actions where missing Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6703 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Co-authored-by: Michael Kriese <michael.kriese@visualon.de> Co-committed-by: Michael Kriese <michael.kriese@visualon.de>
15 lines
409 B
YAML
15 lines
409 B
YAML
runs:
|
|
using: "composite"
|
|
steps:
|
|
- run: |
|
|
su forgejo -c 'make deps-backend'
|
|
- uses: https://data.forgejo.org/actions/cache@v4
|
|
id: cache-backend
|
|
with:
|
|
path: ${{github.workspace}}/gitea
|
|
key: backend-build-${{ github.sha }}
|
|
- if: steps.cache-backend.outputs.cache-hit != 'true'
|
|
run: |
|
|
su forgejo -c 'make backend'
|
|
env:
|
|
TAGS: bindata
|