-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #601 from mashehu/add-self-hosted-runners
add profile for self-hosted runners
- Loading branch information
Showing
5 changed files
with
138 additions
and
111 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
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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Config file for nf-core's self-hosted-runners | ||
|
||
//Profile config names for nf-core/configs | ||
params { | ||
config_profile_description = "Profile for nf-core's self-hosted runners provided by nf-core/configs." | ||
config_profile_contact = 'Matthias Hörtenhuber (@mashehu)' | ||
config_profile_url = 'https://github.com/nf-core/actions-runners' | ||
|
||
|
||
// General cpus/memory/time requirements | ||
max_cpus = 2 | ||
max_memory = 7.GB | ||
max_time = 72.h | ||
} | ||
|
||
docker { | ||
enabled = true | ||
docker.userEmulation = true | ||
docker.runOptions = '--platform=linux/amd64' | ||
} | ||
|
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# nf-core/configs: self-hosted-runner Configuration | ||
|
||
To use, run the pipeline with `-profile self-hosted-runner`. This will download and launch the [`self-hosted-runner.config`](../conf/self-hosted-runner.config) which has been pre-configured with a setup suitable for the self-hosted-runners (for now on AWS via terraform). The main aim of this profile is to fix the permission errors on self-hosted GitHub actions runners. |
Oops, something went wrong.