From 687cbbec8fc54dc5f02acb63013395dfebc0f2f7 Mon Sep 17 00:00:00 2001 From: Rick Carback <rick@privategrity.com> Date: Tue, 8 May 2018 16:55:09 +0000 Subject: [PATCH] Fix some server -> udb names --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6042953..82c0527 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,7 +8,7 @@ cache: variables: REPO_DIR: gitlab.com/privategrity - REPO_NAME: server + REPO_NAME: user-discovery-bot DOCKER_IMAGE: carback1/golang-glide:1.9-4a49ace8cac8 MIN_CODE_COVERAGE: "80.0" @@ -82,11 +82,11 @@ test: # Benchmarking - go test -bench=BenchmarkPrecomp -cpuprofile=testdata/precomp.cpu -memprofile=testdata/precomp.mem -short main_benchmarks_test.go - - go tool pprof -png server.test testdata/precomp.cpu > testdata/precomp-cpu.png - - go tool pprof -png server.test testdata/precomp.mem > testdata/precomp-mem.png + - go tool pprof -png udb.test testdata/precomp.cpu > testdata/precomp-cpu.png + - go tool pprof -png udb.test testdata/precomp.mem > testdata/precomp-mem.png - go test -bench=BenchmarkRealtime -cpuprofile=testdata/realtime.cpu -memprofile=testdata/realtime.mem -short main_benchmarks_test.go - - go tool pprof -png server.test testdata/realtime.cpu > testdata/realtime-cpu.png - - go tool pprof -png server.test testdata/realtime.mem > testdata/realtime-mem.png + - go tool pprof -png udb.test testdata/realtime.cpu > testdata/realtime-cpu.png + - go tool pprof -png udb.test testdata/realtime.mem > testdata/realtime-mem.png # Test Coverage Check - go tool cover -func=testdata/coverage-real.out | grep "total:" | awk '{print $3}' | sed 's/\%//g' > testdata/coverage-percentage.txt -- GitLab