Skip to content

Commit

Permalink
Merge pull request #567 from nf-core/fix-release-tests-for-condasingu…
Browse files Browse the repository at this point in the history
…larity

Use profile variable instead of hardcoding docker
  • Loading branch information
jfy133 authored Jan 14, 2025
2 parents b4e9985 + 6be6184 commit c16ea83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
echo "motus,db1_mOTU,,short,db_mOTU" >> 'database_motus.csv'
echo "motus,db2_mOTU,,long,db_mOTU" >> 'database_motus.csv'
echo "motus,db3_mOTU,,short;long,db_mOTU" >> 'database_motus.csv'
nextflow run ${GITHUB_WORKSPACE} -profile docker,${{ matrix.test_name }} --databases ./database_motus.csv --outdir ./results_${{ matrix.test_name }};
nextflow run ${GITHUB_WORKSPACE} -profile ${{ matrix.profile }},${{ matrix.test_name }} --databases ./database_motus.csv --outdir ./results_${{ matrix.test_name }};
else
nextflow run ${GITHUB_WORKSPACE} -profile docker,${{ matrix.test_name }} --outdir ./results_${{ matrix.test_name }};
nextflow run ${GITHUB_WORKSPACE} -profile ${{ matrix.profile }},${{ matrix.test_name }} --outdir ./results_${{ matrix.test_name }};
fi

0 comments on commit c16ea83

Please sign in to comment.