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

[WM-1646] Add missing fields for WorkflowDescription for WomTool /describe endpoint to Swagger #7004

Merged
merged 5 commits into from
Feb 8, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 5 additions & 1 deletion docs/api/RESTAPI.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions engine/src/main/resources/swagger/cromwell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1251,8 +1251,20 @@ definitions:
- typeName: Int
- typeName: String
typeDisplayName: Pair[Int, String]
images:
type: array
items:
type: string
submittedDescriptorType:
$ref: '#/definitions/DescriptorTypeAndVersion'
importedDescriptorTypes:
type: array
items:
$ref: '#/definitions/DescriptorTypeAndVersion'
meta:
type: object
parameterMeta:
type: object
isRunnableWorkflow:
description: Indicates whether this file can be run on its own (e.g. a WDL workflow)
type: boolean
Expand Down
4 changes: 3 additions & 1 deletion processes/release_processes/README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -140,14 +140,16 @@ This generates the client library and runs the generated tests as well. A succe
[success] Total time: 4 s, completed Jun 26, 2019 3:01:19 PM
```

To publish to artifactory, first obtain the artifactory username and credentials. Then run
To publish to artifactory, first obtain the artifactory username and credentials. Credentials are located in Vault at path `secret/dsde/cromwell/common/cromwell-artifactory`. Then run
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!


```
export ARTIFACTORY_USERNAME=<the-username>
export ARTIFACTORY_PASSWORD=<the-password>
./scripts/publish-client.sh
```

A SNAP version of the client library will be published in jFrog at [this path](https://broadinstitute.jfrog.io/ui/repos/tree/General/libs-release-local/org/broadinstitute/cromwell).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you again!


## Cromwell setup for publishing

One can run a publishing-friendly Cromwell using a containerized MySQL server and config files
Expand Down