summaryrefslogtreecommitdiff
path: root/evergreen/notary_client_run.sh
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2022-05-13 07:16:08 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-05-13 15:30:08 +0000
commit3972a090fa1c54b70c508f7716679a92aa56cbd0 (patch)
treeea4e3f652856874b4eb3c5eb3d2aabd66d947bcb /evergreen/notary_client_run.sh
parentf9bf6f179994afeaff255568a6ab0c28dc3f646c (diff)
downloadmongo-3972a090fa1c54b70c508f7716679a92aa56cbd0.tar.gz
SERVER-64352 Don't attempt to notarize the test shell
(cherry picked from commit 1d4d6b6f83b4c4e1a96802fffe89b9399f89e3b3)
Diffstat (limited to 'evergreen/notary_client_run.sh')
-rw-r--r--evergreen/notary_client_run.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/evergreen/notary_client_run.sh b/evergreen/notary_client_run.sh
index b992d7e1ab3..39c3108df44 100644
--- a/evergreen/notary_client_run.sh
+++ b/evergreen/notary_client_run.sh
@@ -17,7 +17,7 @@ if [[ "${push_name}" == "macos"* ]]; then
curl https://macos-notary-1628249594.s3.amazonaws.com/releases/client/v3.3.0/linux_amd64.zip -o linux_amd64.zip
unzip linux_amd64.zip
chmod +x ./linux_amd64/macnotary
- bins=("mongo-binaries.tgz" "mongo-jstestshell.tgz" "mongo-cryptd.tgz" "mh.tgz")
+ bins=("mongo-binaries.tgz" "mongo-cryptd.tgz" "mh.tgz")
for archive in ${bins[@]}; do
if [ -f "$archive" ]; then
TEMP_ARCHIVE="$(mktemp -p $PWD)"
@@ -31,11 +31,10 @@ if [[ "${push_name}" == "macos"* ]]; then
fi
mv mongo-binaries.tgz mongodb-${push_name}-${push_arch}-${suffix}.${ext}
-mv mongo-jstestshell.tgz mongodb-jstestshell-${push_name}-${push_arch}-${suffix}.${ext}
mv mongo-cryptd.tgz mongodb-cryptd-${push_name}-${push_arch}-${suffix}.${ext} || true
mv mh.tgz mh-${push_name}-${push_arch}-${suffix}.${ext} || true
mv mongo-debugsymbols.tgz mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext} || true
mv distsrc.${ext} mongodb-src-${src_suffix}.${long_ext} || true
/usr/bin/find build/ -type f | grep msi$ | xargs -I original_filename cp original_filename mongodb-${push_name}-${push_arch}-${suffix}.msi || true
-/usr/local/bin/notary-client.py --key-name "server-6.0" --auth-token-file ${workdir}/src/signing_auth_token --comment "Evergreen Automatic Signing ${revision} - ${build_variant} - ${branch_name}" --notary-url http://notary-service.build.10gen.cc:5000 --skip-missing mongodb-${push_name}-${push_arch}-${suffix}.${ext} mongodb-jstestshell-${push_name}-${push_arch}-${suffix}.${ext} mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext} mongodb-${push_name}-${push_arch}-${suffix}.msi mongodb-src-${src_suffix}.${long_ext} mongodb-cryptd-${push_name}-${push_arch}-${suffix}.${ext}
+/usr/local/bin/notary-client.py --key-name "server-6.0" --auth-token-file ${workdir}/src/signing_auth_token --comment "Evergreen Automatic Signing ${revision} - ${build_variant} - ${branch_name}" --notary-url http://notary-service.build.10gen.cc:5000 --skip-missing mongodb-${push_name}-${push_arch}-${suffix}.${ext} mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext} mongodb-${push_name}-${push_arch}-${suffix}.msi mongodb-src-${src_suffix}.${long_ext} mongodb-cryptd-${push_name}-${push_arch}-${suffix}.${ext}