You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nf-configs/.github/workflows/main.yml

113 lines
2.8 KiB
YAML

name: Configs tests
on: [pull_request, push]
4 years ago
jobs:
5 years ago
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
4 years ago
check_nextflow_config:
runs-on: ubuntu-latest
name: Check if nextflow config runs in repository root
steps:
- uses: actions/checkout@v1
- name: Install Nextflow
run: |
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
- run: nextflow config -show-profiles ${GITHUB_WORKSPACE}
5 years ago
profile_test:
runs-on: ubuntu-latest
5 years ago
name: Run ${{ matrix.profile }} profile
5 years ago
needs: test_all_profiles
strategy:
matrix:
profile:
- "abims"
2 years ago
- "adcra"
- "alice"
- "aws_tower"
- "awsbatch"
- "azurebatch"
- "bi"
- "bigpurple"
- "binac"
- "biohpc_gen"
- "cambridge"
- "leicester"
- "cbe"
- "ccga_dx"
- "ccga_med"
2 years ago
- "cedars"
- "cfc"
- "cfc_dev"
- "cheaha"
- "computerome"
2 years ago
- "crg"
- "crick"
- "crukmi"
- "denbi_qbic"
- "ebc"
- "eddie"
- "eva"
- "fgcz"
- "genotoul"
- "genouest"
- "gis"
- "google"
- "hasta"
- "hebbe"
- "hki"
- "icr_davros"
- "ifb_core"
- "imperial"
- "jax"
- "ku_sund_dangpu"
- "lugh"
2 years ago
- "mana"
- "marvin"
- "medair"
2 years ago
- "mjolnir_globe"
- "maestro"
- "mpcdf"
- "munin"
- "nu_genomics"
- "nihbiowulf"
- "oist"
- "pasteur"
- "phoenix"
- "prince"
- "rosalind"
- "sage"
- "sahmri"
- "sanger"
- "sbc_sharc"
- "seg_globe"
2 years ago
- "tigem"
2 years ago
- "ucl_myriad"
- "uct_hpc"
- "unibe_ibu"
- "uppmax"
- "utd_ganymede"
- "utd_sysbio"
- "uzh"
- "vai"
- "vsc_ugent"
steps:
5 years ago
- uses: actions/checkout@v1
- name: Install Nextflow
run: |
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
5 years ago
- name: Check ${{ matrix.profile }} profile
env:
3 years ago
SCRATCH: "~"
NXF_GLOBAL_CONFIG: awsbatch.config
run: nextflow run ${GITHUB_WORKSPACE}/configtest.nf -profile ${{ matrix.profile }}