Skip to content

Commit

Permalink
Merge pull request #15 from bernt-matthias/topic/if-pull
Browse files Browse the repository at this point in the history
make pulling container optional
  • Loading branch information
bernt-matthias authored Aug 7, 2023
2 parents 5c71b60 + 3da19ca commit 82ae2fa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,11 @@ jobs:
run: ln -s $(which apptainer) $(dirname apptainer)/singularity
- name: Install containers
run: |
singularity pull --dir /tmp docker://continuumio/anaconda3
singularity pull --dir /tmp docker://rocker/tidyverse
echo "${{ needs.setup.outputs.repository-list }}" > repository_list.txt
if grep -q scripting repository_list.txt; then
singularity pull --dir /tmp docker://continuumio/anaconda3
singularity pull --dir /tmp docker://rocker/tidyverse
fi
- name: Planemo test
uses: galaxyproject/planemo-ci-action@v1
Expand Down
2 changes: 1 addition & 1 deletion tools/longorf/longORF.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<tool id="longORF" name="Obtain longest ORFs" version="0.2.0">
<tool id="longORF" name="Obtain longest ORFs" version="0.3.0">
<description> in six-frame translations</description>
<command><![CDATA[
python $__tool_directory__/getLongestORF.py $input $output_longestORF $output_ORFs
Expand Down

0 comments on commit 82ae2fa

Please sign in to comment.