File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff 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 }}",
You can’t perform that action at this time.
0 commit comments