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

Added ccms-internal deployment targets to Makefile.deploytemplate. #42

Merged
merged 2 commits into from
Apr 2, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,4 @@ venv.bak/
# user credentials
Makefile.credentials
/.project
/.pydevproject
10 changes: 10 additions & 0 deletions Makefile.deploytemplate
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ DESCRIPTION_INPUT = $(if $(WORKFLOW_DESCRIPTION),--workflow-description $(WORKFL

INPUT_PARAMS = ${VERSION_INPUT} ${WORKFLOW_INPUT} ${TOOL_INPUT} ${LABEL_INPUT} ${DESCRIPTION_INPUT}

#Deploys to ccms-internal without deploying default workflow
deploy-internal:
fab2 -H ${USERNAME}@ccms-internal.ucsd.edu --prompt-for-login-password \
update-all ${INPUT_PARAMS} --force-update-string no

#Deploys to Proteomics2 and updates default workflow
mwang87 marked this conversation as resolved.
Show resolved Hide resolved
deploy-internal-update:
fab2 -H ${USERNAME}@ccms-internal.ucsd.edu --prompt-for-login-password \
update-all ${INPUT_PARAMS}

#Deploys to Proteomics2 without deploying default workflow
deploy-debug:
fab2 -H ${USERNAME}@proteomics2.ucsd.edu --prompt-for-login-password \
Expand Down