-
Notifications
You must be signed in to change notification settings - Fork 277
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
Add profiles that should be shared with all pipelines to configs #71
Conversation
config_profile_url = 'https://aws.amazon.com/batch/' | ||
} | ||
|
||
aws.region = params.awsregion |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line causes the tests to fail 😱
|
||
aws.region = params.awsregion | ||
process.executor = 'awsbatch' | ||
process.queue = params.awsqueue |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line will also cause problems.
process.executor = 'awsbatch' | ||
process.queue = params.awsqueue | ||
executor.awscli = '/home/ec2-user/miniconda/bin/aws' | ||
params.tracedir = './' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason not to group this together with the other params
at the top?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
None, I just copied the config file we had on sarek
I do think
test
anddebug
should be the only profiles to be specified at the pipeline level.So I'd like to include the following profile here:
I still think
conda
,docker
andsingularity
should be included there, but I agree that we can do that one first, and then we'll see.