Skip to content

Commit b1ae5ad

Browse files
authored
Merge pull request #586 from nf-core/aws-patch-2
Use dev version of AWS templates
2 parents 917084b + 0b5e90b commit b1ae5ad

2 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/awsfulltest.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
21
name: nf-core AWS full size tests
3-
# This workflow is triggered on push to the master branch.
2+
# This workflow is triggered on published releases.
3+
# It can be additionally triggered manually with GitHub actions workflow dispatch.
4+
# It runs the -profile 'test_full' on AWS batch
45

56
on:
67
release:
78
types: [published]
9+
workflow_dispatch:
810

911
jobs:
1012
run-awstest:
@@ -36,4 +38,4 @@ jobs:
3638
--job-name nf-core-eager \
3739
--job-queue $AWS_JOB_QUEUE \
3840
--job-definition $AWS_JOB_DEFINITION \
39-
--container-overrides '{"command": ["nf-core/eager", "-r '"${GITHUB_SHA}"' -profile awsfulltest --outdir s3://'"${AWS_S3_BUCKET}"'/eager/results-'"${GITHUB_SHA}"' -w s3://'"${AWS_S3_BUCKET}"'/eager/work-'"${GITHUB_SHA}"' -with-tower"], "environment": [{"name": "TOWER_ACCESS_TOKEN", "value": '"$TOWER_ACCESS_TOKEN"'}]}'
41+
--container-overrides '{"command": ["nf-core/eager", "-r '"${GITHUB_SHA}"' -profile awsfulltest --outdir s3://'"${AWS_S3_BUCKET}"'/eager/results-'"${GITHUB_SHA}"' -w s3://'"${AWS_S3_BUCKET}"'/eager/work-'"${GITHUB_SHA}"' -with-tower"], "environment": [{"name": "TOWER_ACCESS_TOKEN", "value": "'"$TOWER_ACCESS_TOKEN"'"}]}'

.github/workflows/awstest.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
name: nf-core AWS test
22
# This workflow is triggered on push to the master branch.
3-
# It runs the -profile 'test' on AWS batch
3+
# It can be additionally triggered manually with GitHub actions workflow dispatch.
4+
# It runs the -profile 'test' on AWS batch.
45

56
on:
67
push:
78
branches:
89
- master
10+
workflow_dispatch:
911

1012
jobs:
1113
run-awstest:
@@ -36,4 +38,4 @@ jobs:
3638
--job-name nf-core-eager \
3739
--job-queue $AWS_JOB_QUEUE \
3840
--job-definition $AWS_JOB_DEFINITION \
39-
--container-overrides '{"command": ["nf-core/eager", "-r '"${GITHUB_SHA}"' -profile test_tsv_complex --outdir s3://'"${AWS_S3_BUCKET}"'/eager/results-'"${GITHUB_SHA}"' -w s3://'"${AWS_S3_BUCKET}"'/eager/work-'"${GITHUB_SHA}"' -with-tower"], "environment": [{"name": "TOWER_ACCESS_TOKEN", "value": "'"$TOWER_ACCESS_TOKEN"'"}]}'eager/work-'"${GITHUB_SHA}"' -with-tower"], "environment": [{"name": "TOWER_ACCESS_TOKEN", "value": '"$TOWER_ACCESS_TOKEN"'}]}'
41+
--container-overrides '{"command": ["nf-core/eager", "-r '"${GITHUB_SHA}"' -profile test_tsv_complex --outdir s3://'"${AWS_S3_BUCKET}"'/eager/results-'"${GITHUB_SHA}"' -w s3://'"${AWS_S3_BUCKET}"'/eager/work-'"${GITHUB_SHA}"' -with-tower"], "environment": [{"name": "TOWER_ACCESS_TOKEN", "value": "'"$TOWER_ACCESS_TOKEN"'"}]}'

0 commit comments

Comments
 (0)