-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update logo * pin pillow version to 7.0.0 pillow 7.1.1 caused an incompatibility with scikit-image ImageCollections thanks @bisnow33 for reporting the issue * unpin pillow regression was fixed in pillow release 7.1.2 * remove error strategy for local runs Previously, a job that failed because of insufficient memory was resubmitted 3 times and resource requirements were increased for each attempt. e.g run_predictions required: - 2 CPUs and 6GB RAM for the first attempt - 4 CPUs and 12GB RAM for the second attempt - 6 CPUs and 18GB RAM for the third attempt While such a strategy makes sense in a cluster environment, where increased resource requests can be satisfied, it makes little sense on a local computer with given hardware limitations. This commit removes the error strategy for local pipeline runs. * enable integration tests when pushing to dev * fix display of shiny server IP on macOS Previously, the logic assumed that `hostname -i` returns the local ip address of the host. Apparently this is not the case on MacOS, thus fall back to localhost on these systems. * (attempt to) fix string conversion of uname output * add CHANGELOG.md * set version tags for 1.1 release
- Loading branch information
Showing
9 changed files
with
21 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ on: | |
push: | ||
branches-ignore: | ||
- master | ||
- dev | ||
|
||
jobs: | ||
test: | ||
|
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,10 @@ | ||
# Changelog | ||
|
||
## [v1.1](https://github.com/Gregor-Mendel-Institute/aradeepopsis/releases/tag/v1.1) - 2020-05-13 | ||
|
||
* disabled task error strategy for pipeline runs on local computers | ||
* fixed an issue where the network address of the shiny application was not correctly displayed on computers running MacOS | ||
|
||
## [v1.0](https://github.com/Gregor-Mendel-Institute/aradeepopsis/releases/tag/v1.0) - 2020-04-02 | ||
|
||
Initial pipeline release |
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 |
---|---|---|
|
@@ -6,6 +6,6 @@ LABEL authors="[email protected]" \ | |
COPY environment.yml / | ||
RUN apt-get update && apt-get install -y procps graphviz && apt-get clean -y | ||
RUN conda env create -f /environment.yml && conda clean -afy | ||
ENV PATH /opt/conda/envs/aradeepopsis-v1.0/bin:$PATH | ||
ENV PATH /opt/conda/envs/aradeepopsis-v1.1/bin:$PATH | ||
|
||
EXPOSE 44333 |
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: aradeepopsis-v1.0 | ||
name: aradeepopsis-v1.1 | ||
channels: | ||
- conda-forge | ||
- r | ||
|
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