From 206d56c760ee950b7887b941e22a1257b6af96e8 Mon Sep 17 00:00:00 2001 From: Noah Beard Date: Wed, 23 Nov 2022 16:18:59 -0500 Subject: [PATCH] Update canary comment to trigger CI --- codebuild/mqtt-canary-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/codebuild/mqtt-canary-test.yml b/codebuild/mqtt-canary-test.yml index d27f5b44..2fbd3a9e 100644 --- a/codebuild/mqtt-canary-test.yml +++ b/codebuild/mqtt-canary-test.yml @@ -42,13 +42,13 @@ phases: # Canary related: # ========== - echo run canary test through wrapper - # start canary + # Start canary - python3 codebuild/CanaryWrapper.py --canary_executable $CANNARY_TEST_EXE --canary_arguments "-s ${CANARY_DURATION} -t ${CANARY_THREADS} -T ${CANARY_TPS} -C ${CANARY_CLIENT_COUNT} -l ${CANARY_LOG_FILE} -v ${CANARY_LOG_LEVEL} endpoint ${ENDPOINT}" --git_hash ${GIT_HASH} --git_repo_name $PACKAGE_NAME --codebuild_log_path $CODEBUILD_LOG_PATH - aws s3 cp ./${CANARY_LOG_FILE} ${S3_DST}log/${GIT_HASH}/ - # upload built canary test build result to s3 bucket + # Upload built canary test build result to s3 bucket - zip -r latestBuild.zip build/install - aws s3 cp ./latestBuild.zip ${S3_DST}build/latest - # upload latest source to S3 bucket + # Upload latest source to S3 bucket - find * -type f ! -perm +r -exec zip latestSnapshot.zip {} + - aws s3 cp ./latestSnapshot.zip ${S3_DST}source/latest # ==========