-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'trs/pathogen-repo-build/summary'
- Loading branch information
Showing
1 changed file
with
9 additions
and
3 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 |
---|---|---|
@@ -1,8 +1,14 @@ | ||
You can run the following command in your local build directory to re-attach to | ||
this AWS Batch job later to see output and download results: | ||
|
||
``` | ||
nextstrain build --aws-batch --attach ${AWS_BATCH_JOB_ID} . | ||
``` | ||
nextstrain build --aws-batch --attach ${AWS_BATCH_JOB_ID} . | ||
|
||
To monitor the job and see the logs but not download results, run: | ||
|
||
nextstrain build --aws-batch --attach ${AWS_BATCH_JOB_ID} --no-download --detach-on-interrupt | ||
|
||
To cancel the job, run: | ||
|
||
nextstrain build --aws-batch --attach ${AWS_BATCH_JOB_ID} --cancel | ||
|
||
You can also view this job in the [AWS Batch console](https://console.aws.amazon.com/batch/home?region=us-east-1#jobs/detail/${AWS_BATCH_JOB_ID}). |