Loading
forgejo: fix `checkPhase` regression
This fixes a regression introduced in 5de92a8b. Forgejo v13 made the GO_TEST_PACKAGES variable lazy in [1], which causes our custom show-backend-tests make target to return an empty string, which in turn causes our checkPhase to not run a single go test. To fix this, we need to slightly modify our custom make target to reference the newly introduced compute-go-test-packages target as a dependency. [1]: https://codeberg.org/forgejo/forgejo/pulls/9208