diff options
author | Antoine GIRARD <sapk@users.noreply.github.com> | 2019-02-11 18:09:50 +0100 |
---|---|---|
committer | techknowlogick <matti@mdranta.net> | 2019-02-11 12:09:50 -0500 |
commit | 9eb00fed13393a3239ef8f6db18a4714d2557065 (patch) | |
tree | 994b0feb45a9a12b251b7ad06b5c94915d60441e /Makefile | |
parent | 353282e65880147408382ac4a44473272af53101 (diff) | |
download | gitea-9eb00fed13393a3239ef8f6db18a4714d2557065.tar.gz gitea-9eb00fed13393a3239ef8f6db18a4714d2557065.zip |
Run benchmark at tag to track performances (#6035)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -252,6 +252,10 @@ bench-sqlite: integrations.sqlite.test bench-mysql: integrations.test generate-ini GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql.ini ./integrations.test -test.cpuprofile=cpu.out -test.run DontRunTests -test.bench . +.PHONY: bench-mssql +bench-mssql: integrations.test generate-ini + GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mssql.ini ./integrations.test -test.cpuprofile=cpu.out -test.run DontRunTests -test.bench . + .PHONY: bench-pgsql bench-pgsql: integrations.test generate-ini GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/pgsql.ini ./integrations.test -test.cpuprofile=cpu.out -test.run DontRunTests -test.bench . |