2019-11-25 23:52:39 +00:00
|
|
|
|
name: Configs tests
|
2019-11-25 23:25:49 +00:00
|
|
|
|
|
2019-11-26 13:07:25 +00:00
|
|
|
|
on: [pull_request, push]
|
2019-11-25 23:25:49 +00:00
|
|
|
|
jobs:
|
2019-11-26 13:11:16 +00:00
|
|
|
|
test_all_profiles:
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
name: Check if all profiles are tested
|
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
- name: Check whether profiles are all tested
|
|
|
|
|
run: |
|
|
|
|
|
python ${GITHUB_WORKSPACE}/bin/cchecker.py ${GITHUB_WORKSPACE}/nfcore_custom.config ${GITHUB_WORKSPACE}/.github/workflows/main.yml
|
2019-11-25 23:34:55 +00:00
|
|
|
|
profile_test:
|
|
|
|
|
runs-on: ubuntu-latest
|
2019-11-26 13:12:19 +00:00
|
|
|
|
name: Run ${{ matrix.profile }} profile
|
2019-11-26 13:11:16 +00:00
|
|
|
|
needs: test_all_profiles
|
2019-11-25 23:25:49 +00:00
|
|
|
|
strategy:
|
|
|
|
|
matrix:
|
2019-11-26 19:34:42 +00:00
|
|
|
|
profile: ['awsbatch', 'bigpurple', 'binac', 'cbe', 'ccga_dx', 'ccga', 'cfc', 'crick', 'denbi_qbic', 'genotoul', 'genouest', 'gis', 'hebbe', 'kraken', 'munin', 'pasteur', 'phoenix', 'prince', 'shh_sdag', 'shh_cdag', 'uct_hex', 'uppmax_devel', 'uppmax', 'uzh']
|
2019-11-25 23:25:49 +00:00
|
|
|
|
steps:
|
2019-11-25 23:51:08 +00:00
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
- name: Install Nextflow
|
|
|
|
|
run: |
|
2019-11-25 23:25:49 +00:00
|
|
|
|
wget -qO- get.nextflow.io | bash
|
|
|
|
|
sudo mv nextflow /usr/local/bin/
|
2019-11-26 13:12:41 +00:00
|
|
|
|
- name: Check ${{ matrix.profile }} profile
|
2019-11-26 13:27:22 +00:00
|
|
|
|
env:
|
|
|
|
|
SCRATCH: '~'
|
2019-11-26 13:11:16 +00:00
|
|
|
|
run: nextflow run ${GITHUB_WORKSPACE}/configtest.nf --custom_config_base=${GITHUB_WORKSPACE} -profile ${{ matrix.profile }}
|