-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
891682f
commit 0623858
Showing
1 changed file
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -249,21 +249,20 @@ jobs: | |
done | ||
done | ||
#export submission ids to github env | ||
echo "SUBMISSION_IDS=${SUBMISSION_IDS[@]}" >> $GITHUB_ENV | ||
echo $GITHUB_ENV | ||
echo "submission_ids=${SUBMISSION_IDS[@]}" >> $GITHUB_ENV | ||
- name: Monitor Workflow Status | ||
run: | | ||
echo "Monitoring the status of submitted workflows..." | ||
echo "SUBMISSION_IDS: $SUBMISSION_IDS" | ||
for SUBMISSION_ID in "${SUBMISSION_IDS[@]}"; do | ||
echo $submission_ids | ||
for SUBMISSION_ID in "${submission_ids[@]}"; do | ||
echo "Polling submission status for Submission ID: $SUBMISSION_ID" | ||
SUBMISSION_ID=$(python3 scripts/firecloud_api/firecloud_api2.py poll_job_status \ | ||
python3 scripts/firecloud_api/firecloud_api2.py poll_job_status \ | ||
--submission_id "$SUBMISSION_ID" \ | ||
--sa-json-b64 "$SA_JSON_B64" \ | ||
--user "[email protected]" \ | ||
--workspace-namespace "warp-pipelines" \ | ||
--workspace-name "WARP Tests") | ||
--workspace-name "WARP Tests" | ||
|
||
if [ -z "$SUBMISSION_ID" ]; then | ||
|