Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
feat: support for post deploy scripts (#1325)
* feat: support for post deploy scripts (skeleton) * fixes * fmt with black * Add info message * Add documentation * move code * Moved to method * Fix variable * Add test * Add result * Add missing folder * Fix name * Fixed typo * Update docs * write to tmp * fix patho * transform to path Co-authored-by: Felix Mölder <felix.moelder@uni-due.de>
- Loading branch information
1 parent
9fe8060
commit e5dac4f
Showing
7 changed files
with
122 additions
and
4 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,17 @@ | ||
shell.executable("bash") | ||
|
||
rule all: | ||
input: | ||
"test.out" | ||
|
||
rule a: | ||
output: | ||
"test.out" | ||
conda: | ||
"test-env.yaml" | ||
shell: | ||
""" | ||
if [ -f $CONDA_PREFIX/test.txt ] ;then | ||
touch {output} | ||
fi | ||
""" |
Empty file.
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 @@ | ||
#!/bin/bash | ||
|
||
touch $CONDA_PREFIX/test.txt |
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,5 @@ | ||
channels: | ||
- bioconda | ||
- conda-forge | ||
dependencies: | ||
- python <3.10 |
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