-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into nf-core-template-merge-3.0.2
- Loading branch information
Showing
127 changed files
with
17,534 additions
and
2,233 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
".": | ||
- ./.github/workflows/** | ||
- ./nf-test.config | ||
- ./nextflow.config | ||
tests: | ||
- ./assets/* | ||
- ./bin/* | ||
- ./conf/* | ||
- ./main.nf | ||
- ./nextflow_schema.json |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,15 +1,22 @@ | ||
name: nf-core CI | ||
# This workflow runs the pipeline with the minimal test dataset to check that it completes without any syntax errors | ||
name: nf-core CI | ||
on: | ||
push: | ||
branches: | ||
- dev | ||
pull_request: | ||
release: | ||
types: [published] | ||
merge_group: | ||
types: | ||
- checks_requested | ||
branches: | ||
- master | ||
- dev | ||
workflow_dispatch: | ||
|
||
env: | ||
NFT_DIFF: "pdiff" | ||
NFT_DIFF_ARGS: "--line-numbers --expand-tabs=2" | ||
NFT_VER: "0.9.0" | ||
NFT_WORKDIR: "~" | ||
NXF_ANSI_LOG: false | ||
NXF_SINGULARITY_CACHEDIR: ${{ github.workspace }}/.singularity | ||
NXF_SINGULARITY_LIBRARYDIR: ${{ github.workspace }}/.singularity | ||
|
@@ -19,12 +26,36 @@ concurrency: | |
cancel-in-progress: true | ||
|
||
jobs: | ||
changes: | ||
name: Check for changes | ||
runs-on: ubuntu-latest | ||
outputs: | ||
nf_test_files: ${{ steps.list.outputs.components }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: List nf-test files | ||
id: list | ||
uses: adamrtalbot/[email protected] | ||
with: | ||
head: ${{ github.sha }} | ||
base: origin/${{ github.base_ref }} | ||
include: .github/include.yaml | ||
|
||
- name: print list of nf-test files | ||
run: | | ||
echo ${{ steps.list.outputs.components }} | ||
test: | ||
name: "Run pipeline with test data (${{ matrix.NXF_VER }} | ${{ matrix.test_name }} | ${{ matrix.profile }})" | ||
name: "Test on (${{ matrix.NXF_VER }} | ${{ matrix.nf_test_files }} | ${{ matrix.profile }})" | ||
# Only run on push if this is the nf-core dev branch (merged PRs) | ||
if: "${{ github.event_name != 'push' || (github.event_name == 'push' && github.repository == 'nf-core/fetchngs') }}" | ||
if: needs.changes.outputs.nf_test_files != '[]' && ${{ github.event_name != 'push' || (github.event_name == 'push' && github.repository == 'nf-core/fetchngs') }} | ||
needs: [changes] | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
NXF_VER: | ||
- "24.04.2" | ||
|
@@ -33,8 +64,7 @@ jobs: | |
- "conda" | ||
- "docker" | ||
- "singularity" | ||
test_name: | ||
- "test" | ||
nf_test_files: ["${{ fromJson(needs.changes.outputs.nf_test_files) }}"] | ||
isMaster: | ||
- ${{ github.base_ref == 'master' }} | ||
# Exclude conda and singularity on dev | ||
|
@@ -52,6 +82,20 @@ jobs: | |
with: | ||
version: "${{ matrix.NXF_VER }}" | ||
|
||
- uses: nf-core/setup-nf-test@v1 | ||
with: | ||
version: "${{ env.NFT_VER }}" | ||
|
||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.11" | ||
architecture: "x64" | ||
|
||
- name: Install pdiff to see diff between nf-test snapshots | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pdiff | ||
- name: Set up Apptainer | ||
if: matrix.profile == 'singularity' | ||
uses: eWaterCycle/setup-apptainer@main | ||
|
@@ -80,6 +124,42 @@ jobs: | |
- name: Clean up Disk space | ||
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1 | ||
|
||
- name: "Run pipeline with test data ${{ matrix.NXF_VER }} | ${{ matrix.test_name }} | ${{ matrix.profile }}" | ||
- name: "Run nf-test ${{ matrix.NXF_VER }} | ${{ matrix.test_name }} | ${{ matrix.profile }}" | ||
run: | | ||
nf-test test --verbose ${{ matrix.nf_test_files }} --profile "+${{ matrix.profile }}" --junitxml=test.xml --tap=test.tap | ||
- uses: pcolby/tap-summary@v1 | ||
with: | ||
path: >- | ||
test.tap | ||
- name: Output log on failure | ||
if: failure() | ||
run: | | ||
sudo apt install bat > /dev/null | ||
batcat --decorations=always --color=always ${{ github.workspace }}/.nf-test/tests/*/meta/nextflow.log | ||
- name: Publish Test Report | ||
uses: mikepenz/action-junit-report@v3 | ||
if: always() # always run even if the previous step fails | ||
with: | ||
report_paths: test.xml | ||
confirm-pass: | ||
runs-on: ubuntu-latest | ||
needs: | ||
- changes | ||
- test | ||
if: always() | ||
steps: | ||
- name: All tests ok | ||
if: ${{ !contains(needs.*.result, 'failure') }} | ||
run: exit 0 | ||
- name: One or more tests failed | ||
if: ${{ contains(needs.*.result, 'failure') }} | ||
run: exit 1 | ||
|
||
- name: debug-print | ||
if: always() | ||
run: | | ||
nextflow run ${GITHUB_WORKSPACE} -profile ${{ matrix.test_name }},${{ matrix.profile }} --outdir ./results | ||
echo "toJSON(needs) = ${{ toJSON(needs) }}" | ||
echo "toJSON(needs.*.result) = ${{ toJSON(needs.*.result) }}" |
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,146 @@ | ||
name: nf-core cloud full size tests | ||
# This workflow is triggered on PRs opened against the master branch. | ||
# It can be additionally triggered manually with GitHub actions workflow dispatch button. | ||
# It runs the -profile 'test_full' on Cloud | ||
run-name: Submitting workflow to all cloud providers using full sized data | ||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
pull_request_review: | ||
types: [submitted] | ||
workflow_dispatch: | ||
inputs: | ||
platform: | ||
description: "Platform to run test" | ||
required: true | ||
default: "all" | ||
type: choice | ||
options: | ||
- all | ||
- aws | ||
- azure | ||
- gcp | ||
jobs: | ||
run-full-tests-on-aws: | ||
name: Run AWS full tests | ||
if: ${{ github.event.inputs.platform == 'all' || github.event.inputs.platform == 'aws' || !github.event.inputs }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
download_method: ["aspera", "ftp", "sratools"] | ||
steps: | ||
- uses: octokit/[email protected] | ||
id: check_approvals | ||
with: | ||
route: GET /repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/reviews | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- id: test_variables | ||
if: github.event_name != 'workflow_dispatch' | ||
run: | | ||
JSON_RESPONSE='${{ steps.check_approvals.outputs.data }}' | ||
CURRENT_APPROVALS_COUNT=$(echo $JSON_RESPONSE | jq -c '[.[] | select(.state | contains("APPROVED")) ] | length') | ||
test $CURRENT_APPROVALS_COUNT -ge 2 || exit 1 # At least 2 approvals are required | ||
- name: Launch workflow via Seqera Platform | ||
uses: seqeralabs/action-tower-launch@v2 | ||
with: | ||
workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} | ||
access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} | ||
compute_env: ${{ secrets.TOWER_CE_AWS_CPU }} | ||
workdir: "${{ secrets.TOWER_BUCKET_AWS }}/work/fetchngs/work-${{ github.sha }}" | ||
run_name: "aws_fetchngs_full_${{ matrix.download_method }}" | ||
revision: ${{ github.sha }} | ||
profiles: test_full | ||
parameters: | | ||
{ | ||
"hook_url": "${{ secrets.MEGATESTS_ALERTS_SLACK_HOOK_URL }}", | ||
"download_method": "${{ matrix.download_method }}", | ||
"outdir": "${{ secrets.TOWER_BUCKET_AWS }}/fetchngs/results-${{ github.sha }}/download_method_${{ matrix.download_method }}/" | ||
} | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: Tower debug log file | ||
path: tower_action_*.log | ||
|
||
run-full-tests-on-azure: | ||
name: Run Azure full tests | ||
if: ${{ github.event.inputs.platform == 'all' || github.event.inputs.platform == 'azure' || !github.event.inputs }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
download_method: ["aspera", "ftp", "sratools"] | ||
steps: | ||
- uses: octokit/[email protected] | ||
id: check_approvals | ||
with: | ||
route: GET /repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/reviews | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- id: test_variables | ||
if: github.event_name != 'workflow_dispatch' | ||
run: | | ||
JSON_RESPONSE='${{ steps.check_approvals.outputs.data }}' | ||
CURRENT_APPROVALS_COUNT=$(echo $JSON_RESPONSE | jq -c '[.[] | select(.state | contains("APPROVED")) ] | length') | ||
test $CURRENT_APPROVALS_COUNT -ge 2 || exit 1 # At least 2 approvals are required | ||
- name: Launch workflow via Seqera Platform | ||
uses: seqeralabs/action-tower-launch@v2 | ||
with: | ||
workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} | ||
access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} | ||
compute_env: ${{ secrets.TOWER_CE_AZURE_CPU }} | ||
workdir: "${{ secrets.TOWER_BUCKET_AZURE }}/work/fetchngs/work-${{ github.sha }}" | ||
run_name: "azure_fetchngs_full_${{ matrix.download_method }}" | ||
revision: ${{ github.sha }} | ||
profiles: test_full | ||
parameters: | | ||
{ | ||
"hook_url": "${{ secrets.MEGATESTS_ALERTS_SLACK_HOOK_URL }}", | ||
"download_method": "${{ matrix.download_method }}", | ||
"outdir": "${{ secrets.TOWER_BUCKET_AZURE }}/fetchngs/results-${{ github.sha }}/download_method_${{ matrix.download_method }}/" | ||
} | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: Tower debug log file | ||
path: tower_action_*.log | ||
|
||
run-full-tests-on-gcp: | ||
name: Run GCP full tests | ||
if: ${{ github.event.inputs.platform == 'gcp' || !github.event.inputs }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
download_method: ["aspera", "ftp", "sratools"] | ||
steps: | ||
- uses: octokit/[email protected] | ||
id: check_approvals | ||
with: | ||
route: GET /repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/reviews | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- id: test_variables | ||
if: github.event_name != 'workflow_dispatch' | ||
run: | | ||
JSON_RESPONSE='${{ steps.check_approvals.outputs.data }}' | ||
CURRENT_APPROVALS_COUNT=$(echo $JSON_RESPONSE | jq -c '[.[] | select(.state | contains("APPROVED")) ] | length') | ||
test $CURRENT_APPROVALS_COUNT -ge 2 || exit 1 # At least 2 approvals are required | ||
- name: Launch workflow via Seqera Platform | ||
uses: seqeralabs/action-tower-launch@v2 | ||
with: | ||
workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} | ||
access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} | ||
compute_env: ${{ secrets.TOWER_CE_GCP_CPU }} | ||
workdir: "${{ secrets.TOWER_BUCKET_GCP }}/work/fetchngs/work-${{ github.sha }}" | ||
run_name: "gcp_fetchngs_full_${{ matrix.download_method }}" | ||
revision: ${{ github.sha }} | ||
profiles: test_full | ||
parameters: | | ||
{ | ||
"hook_url": "${{ secrets.MEGATESTS_ALERTS_SLACK_HOOK_URL }}", | ||
"download_method": "${{ matrix.download_method }}", | ||
"outdir": "${{ secrets.TOWER_BUCKET_GCP }}/fetchngs/results-${{ github.sha }}/download_method_${{ matrix.download_method }}/" | ||
} | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: Tower debug log file | ||
path: tower_action_*.log |
Oops, something went wrong.