Skip to content

Commit d3f2707

Browse files
committed
ci: Add ARM Megatests
1 parent f88b314 commit d3f2707

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/cloud_tests_full.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,17 @@ jobs:
2222
strategy:
2323
matrix:
2424
aligner: ["star_salmon", "star_rsem"]
25+
arch: ["arm64", "x86_64"]
2526
steps:
2627
- uses: seqeralabs/action-tower-launch@v2
2728
with:
2829
workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }}
2930
access_token: ${{ secrets.TOWER_ACCESS_TOKEN }}
30-
compute_env: ${{ secrets.TOWER_CE_AWS_CPU }}
31+
compute_env: ${{ matrix.arch == 'arm64' && secrets.TOWER_CE_AWS_CPU_ARM64 || secrets.TOWER_CE_AWS_CPU }}
3132
workdir: "${{ secrets.TOWER_BUCKET_AWS }}/work/rnaseq/work-${{ github.sha }}"
32-
run_name: "aws_rnaseq_full_${{ matrix.aligner }}"
33+
run_name: "aws_rnaseq_full_${{ matrix.aligner }}_${{ matrix.arch }}"
3334
revision: ${{ github.sha }}
34-
profiles: test_full_aws
35+
profiles: test_full_aws${{ matrix.arch == 'arm64' && ',wave,arm' || '' }}
3536
parameters: |
3637
{
3738
"hook_url": "${{ secrets.MEGATESTS_ALERTS_SLACK_HOOK_URL }}",

0 commit comments

Comments
 (0)