nf-core cloud full size tests #555
Workflow file for this run
This file contains hidden or 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
name: nf-core cloud full size tests | |
# This workflow is triggered on PRs opened against the main/master branch. | |
# It can be additionally triggered manually with GitHub actions workflow dispatch button. | |
# It runs the -profile 'test_full' on cloud | |
on: | |
pull_request_review: | |
types: [submitted] | |
release: | |
types: [published] | |
workflow_dispatch: | |
inputs: | |
test: | |
description: "-profile test (smaller)" | |
type: boolean | |
default: true | |
somatic: | |
description: "Somatic full test" | |
type: boolean | |
default: false | |
germline: | |
description: "Germline full test" | |
type: boolean | |
default: false | |
germline_ncbench_agilent: | |
description: "Germline Agilent NCBench test" | |
type: boolean | |
default: false | |
aws: | |
description: "AWS Batch" | |
type: boolean | |
default: true | |
azure: | |
description: "Azure Batch" | |
type: boolean | |
default: true | |
jobs: | |
run-platform: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- profile: test_aws | |
test: test | |
cloud: aws | |
compute_env: TOWER_COMPUTE_ENV | |
workdir: TOWER_BUCKET_AWS | |
- profile: test_azure | |
test: test | |
cloud: azure | |
compute_env: TOWER_CE_AZURE_CPU | |
workdir: TOWER_BUCKET_AZURE | |
- profile: test_full_aws | |
test: somatic | |
cloud: aws | |
compute_env: TOWER_COMPUTE_ENV | |
workdir: TOWER_BUCKET_AWS | |
- profile: test_full_azure | |
test: somatic | |
cloud: azure | |
compute_env: TOWER_CE_AZURE_CPU | |
workdir: TOWER_BUCKET_AZURE | |
- profile: test_full_germline_aws | |
test: germline | |
cloud: aws | |
compute_env: TOWER_COMPUTE_ENV | |
workdir: TOWER_BUCKET_AWS | |
- profile: test_full_germline_azure | |
test: germline | |
cloud: azure | |
compute_env: TOWER_CE_AZURE_CPU | |
workdir: TOWER_BUCKET_AZURE | |
- profile: test_full_germline_ncbench_agilent | |
test: germline_ncbench_agilent | |
cloud: aws | |
compute_env: TOWER_COMPUTE_ENV | |
workdir: TOWER_BUCKET_AWS | |
name: Run AWS full tests | |
# run only if the PR is approved by at least 2 reviewers and against the master branch or manually triggered | |
if: github.repository == 'nf-core/sarek' && github.event.review.state == 'approved' && (github.event.pull_request.base.ref == 'master' || github.event.pull_request.base.ref == 'main') || github.event_name == 'workflow_dispatch' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set revision variable | |
id: revision | |
run: | | |
echo "revision=${{ (github.event_name == 'workflow_dispatch' || github.event_name == 'release') && github.sha || 'dev' }}" >> "$GITHUB_OUTPUT" | |
- name: Launch workflow via Seqera Platform | |
uses: seqeralabs/action-tower-launch@v2 | |
with: | |
run_name: sarek_${{ matrix.profile }} | |
workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} | |
access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} | |
compute_env: ${{ secrets[matrix.compute_env] }} | |
revision: ${{ steps.revision.outputs.revision }} | |
workdir: ${{ secrets[matrix.workdir] }}/work/sarek/work-${{ steps.revision.outputs.revision }}/${{ matrix.profile }} | |
parameters: | | |
{ | |
"hook_url": "${{ secrets.MEGATESTS_ALERTS_SLACK_HOOK_URL }}", | |
"outdir": "${{ secrets[matrix.workdir] }}/sarek/results-${{ steps.revision.outputs.revision }}/${{ matrix.profile }}/" | |
} | |
profiles: ${{ matrix.profile }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: Seqera Platform debug log file | |
path: | | |
seqera_platform_action_*.log | |
seqera_platform_action_*.json |