summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Angel Nieto <miguel.nieto@mongodb.com>2023-05-17 12:19:12 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-05-17 13:42:08 +0000
commitd2f241ddb0494d079b8b2b282de4333b666da805 (patch)
treea949d11ad5ed1d5cf0a5743effdb6b5f5d0c3f92
parent1c4235fa8461371d3539f2668d82b9cd4da4d537 (diff)
downloadmongo-d2f241ddb0494d079b8b2b282de4333b666da805.tar.gz
SERVER-77167: update how we build mongo-tools in sys-perf v2
-rwxr-xr-xetc/system_perf.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/system_perf.yml b/etc/system_perf.yml
index 49175f16eba..5b9e7906ba5 100755
--- a/etc/system_perf.yml
+++ b/etc/system_perf.yml
@@ -344,7 +344,7 @@ functions:
set -o igncr
fi;
- # set_goenv provides set_goenv(), print_ldflags() and print_tags() used below
+ # set_goenv provides set_goenv()
. ./set_goenv.sh
GOROOT="" set_goenv || exit
go version
@@ -354,7 +354,7 @@ functions:
build_tools="$build_tools mongoreplay"
fi
for i in $build_tools; do
- go build -ldflags "$(print_ldflags)" ${args} -tags "$(print_tags ${tooltags})" -o "../../../../../mongodb/bin/$i${exe|}" $i/main/$i.go
+ go build -o "../../../../../mongodb/bin/$i${exe|}" $i/main/$i.go
"../../../../../mongodb/bin/$i${exe|}" --version
done
- command: shell.exec