Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

no tests Gd increase tolerance #1467

Open
wants to merge 6 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions automation/createWorkspaces.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env bash

set -e


for i in {1..501}; do
curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' --header 'Authorization:
Bearer ya29.GltaBjfPdBbkVXbuYsOiCIcguA4zjyVZJGZ5nqb9q5Gt3qgEHMjolrPSdPkmtHJB8l6tfC5cqJ3Rus3iEf8wNzUifh4VmYZWb47gFvgAxC31FFcmAClaTPTELgSD' -d '{ \
"namespace": "aj-gatling-tests-1", \
"name": "GD-2000-WS-noAD-$i", \
"attributes": {}, \
"authorizationDomain": [ \
\
] \
}' 'https://firecloud-orchestration.dsde-perf.broadinstitute.org/api/workspaces'
done
7 changes: 5 additions & 2 deletions automation/submission-perf-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,10 @@ if [ $ENV = "alpha" ]; then

if [ "$submissionStatus" == "Done" ] && [ "$workflowsStatus" == "Succeeded" ]; then
echo "One-off workflow finished within 3 hours with workflow status: $workflowsStatus"

echo "${submissionStatus}" "${workflowsStatus}" > submissionResults.txt 2>&1
else
echo "failing with submission status: $submissionStatus and workflow status: $workflowsStatus"
echo "${submissionStatus}" "${workflowsStatus}" > submissionResults.txt 2>&1
exit 1
fi
##########################################################################################
Expand Down Expand Up @@ -231,11 +232,13 @@ if [ $ENV = "alpha" ]; then
done

totalFailures=$(( $failuresA+$failuresB+$failuresD+$failuresE+$failuresG ))
if [ "$totalFailures" -le 10 ]; then
if [ "$totalFailures" -le 30 ]; then
echo "Nightly Alpha test succeded with $totalFailures total failed workflows"
echo "${totalFailures}" &> submissionResults.txt 2>&1
exit 0
else
echo "Nightly Alpha test failed with $totalFailures total failed workflows"
echo "${totalFailures}" &> submissionResults.txt 2>&1
exit 1
fi

Expand Down