mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 11:08:17 +00:00
ci: Revert back to one job branch
This commit is contained in:
parent
59818c2b86
commit
8f7e5c050e
1 changed files with 6 additions and 112 deletions
118
.github/workflows/pytest-workflow.yml
vendored
118
.github/workflows/pytest-workflow.yml
vendored
|
@ -6,11 +6,8 @@ on:
|
||||||
branches: [master]
|
branches: [master]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
###########
|
changes:
|
||||||
# Modules #
|
name: Check for changes
|
||||||
###########
|
|
||||||
module_changes:
|
|
||||||
name: Check for changes in the modules
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
# Expose matched filters as job 'modules' output variable
|
# Expose matched filters as job 'modules' output variable
|
||||||
|
@ -23,120 +20,17 @@ jobs:
|
||||||
with:
|
with:
|
||||||
filters: "tests/config/pytest_modules.yml"
|
filters: "tests/config/pytest_modules.yml"
|
||||||
|
|
||||||
module_test:
|
test:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
name: ${{ matrix.tags }} ${{ matrix.profile }} ${{ matrix.nxf_version }}
|
name: ${{ matrix.tags }} ${{ matrix.profile }} ${{ matrix.nxf_version }}
|
||||||
needs: module_changes
|
needs: changes
|
||||||
if: needs.module_changes.outputs.modules != '[]'
|
if: needs.changes.outputs.modules != '[]'
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
nxf_version: ["21.04.0"]
|
nxf_version: ["21.04.0"]
|
||||||
tags: ${{ fromJson(needs.module_changes.outputs.modules) }}
|
tags: ["${{ fromJson(needs.changes.outputs.modules) }}"]
|
||||||
profile: ["docker", "singularity", "conda"]
|
|
||||||
env:
|
|
||||||
NXF_ANSI_LOG: false
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Set up Python
|
|
||||||
uses: actions/setup-python@v2
|
|
||||||
with:
|
|
||||||
python-version: "3.x"
|
|
||||||
|
|
||||||
- uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: ~/.cache/pip
|
|
||||||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pip-
|
|
||||||
|
|
||||||
- name: Set up Python
|
|
||||||
uses: actions/setup-python@v2
|
|
||||||
with:
|
|
||||||
python-version: "3.x"
|
|
||||||
|
|
||||||
- name: Install Python dependencies
|
|
||||||
run: python -m pip install --upgrade pip pytest-workflow
|
|
||||||
|
|
||||||
- uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: /usr/local/bin/nextflow
|
|
||||||
key: ${{ runner.os }}-nextflow-${{ matrix.nxf_version }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-nextflow-
|
|
||||||
|
|
||||||
- name: Install Nextflow
|
|
||||||
env:
|
|
||||||
NXF_VER: ${{ matrix.nxf_version }}
|
|
||||||
CAPSULE_LOG: none
|
|
||||||
run: |
|
|
||||||
wget -qO- get.nextflow.io | bash
|
|
||||||
sudo mv nextflow /usr/local/bin/
|
|
||||||
|
|
||||||
- name: Set up Singularity
|
|
||||||
if: matrix.profile == 'singularity'
|
|
||||||
uses: eWaterCycle/setup-singularity@v5
|
|
||||||
with:
|
|
||||||
singularity-version: 3.7.1
|
|
||||||
|
|
||||||
- name: Setup miniconda
|
|
||||||
if: matrix.profile == 'conda'
|
|
||||||
uses: conda-incubator/setup-miniconda@v2
|
|
||||||
with:
|
|
||||||
auto-update-conda: true
|
|
||||||
channels: conda-forge,bioconda,defaults
|
|
||||||
python-version: ${{ matrix.python-version }}
|
|
||||||
|
|
||||||
- name: Conda clean
|
|
||||||
if: matrix.profile == 'conda'
|
|
||||||
run: conda clean -a
|
|
||||||
|
|
||||||
# Test the module
|
|
||||||
- name: Run pytest-workflow
|
|
||||||
# only use one thread for pytest-workflow to avoid race condition on conda cache.
|
|
||||||
run: NF_CORE_MODULES_TEST=1 TMPDIR=~ PROFILE=${{ matrix.profile }} pytest --tag ${{ matrix.tags }} --symlink --kwdof
|
|
||||||
|
|
||||||
- name: Upload logs on failure
|
|
||||||
if: failure()
|
|
||||||
uses: actions/upload-artifact@v2
|
|
||||||
with:
|
|
||||||
name: logs-${{ matrix.profile }}-${{ matrix.nxf_version }}
|
|
||||||
path: |
|
|
||||||
/home/runner/pytest_workflow_*/*/.nextflow.log
|
|
||||||
/home/runner/pytest_workflow_*/*/log.out
|
|
||||||
/home/runner/pytest_workflow_*/*/log.err
|
|
||||||
/home/runner/pytest_workflow_*/*/work
|
|
||||||
|
|
||||||
################
|
|
||||||
# Subworkflows #
|
|
||||||
################
|
|
||||||
subworkflow_changes:
|
|
||||||
name: Check for changes in the subworkflows
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
outputs:
|
|
||||||
# Expose matched filters as job 'subworkflows' output variable
|
|
||||||
subworkflows: ${{ steps.filter.outputs.changes }}
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- uses: dorny/paths-filter@v2
|
|
||||||
id: filter
|
|
||||||
with:
|
|
||||||
filters: "tests/config/pytest_subworkflows.yml"
|
|
||||||
|
|
||||||
subworkflow_test:
|
|
||||||
runs-on: ubuntu-20.04
|
|
||||||
|
|
||||||
name: ${{ matrix.tags }} ${{ matrix.profile }} ${{ matrix.nxf_version }}
|
|
||||||
needs: subworkflow_changes
|
|
||||||
if: needs.subworkflow_changes.outputs.subworkflows != '[]'
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
nxf_version: ["21.04.0"]
|
|
||||||
tags: ${{ fromJson(needs.subworkflow_changes.outputs.subworkflows) }}
|
|
||||||
profile: ["docker", "singularity", "conda"]
|
profile: ["docker", "singularity", "conda"]
|
||||||
env:
|
env:
|
||||||
NXF_ANSI_LOG: false
|
NXF_ANSI_LOG: false
|
||||||
|
|
Loading…
Reference in a new issue