Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-08-30Add missing TestMain callsWill Chandler
Many packages fail to call `TestMain` as part of their tests, which is required to invoke our goroutine leak detector. Create a new `testhelper_test.go` file and include a `TestMain` function that executes `testhelper.Run`.
2022-11-14ps: Run tests in sha256 modeJames Fargher
The implementation of ps is object hash agnostic.
2022-07-18test: Disable all test with tag sha256Toon Claes
We're about to add the ability to test with SHA256 hashes. We assume none of the tests work with this object format. With this change we add the build constraint to not run any test when the tag 'gitaly_test_sha256' is set.
2022-07-18golang: Remove v1.16 build tagsToon Claes
We recently switched to using Golang version 1.17 or higher, so we can drop the old-style build tags.
2021-09-01global: Support Go-1.17-style build tagsPatrick Steinhardt
With Go 1.17, new syntax was introduced for build tags which has the intent to be much easier to use compared to the previous `+build` ones. To ease the migration, Go 1.17 supports both old-style and new-style build tags, where the recommended migration path is to have both as long as projects support older Go versions which don't yet know about the new syntax. Migrate our codebase to use both both styles. While we don't yet support Go 1.17 officially, it doesn't hurt to be prepared, and furthermore it fixes linting issues I have been observing on my machine.
2021-07-06Implement optimized RSS monitor based on /proc/[pid]/statmIgor Wiedler
The goal of this change is to relieve pressure on forkExec mutex on platforms where this is supported. Changelog: performance
2019-05-21Restore FreeBSD compatibilityAlessio Caiazza