mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-22 17:59:54 +00:00
69 lines
1.8 KiB
YAML
69 lines
1.8 KiB
YAML
name: Example builds
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
workflow_dispatch:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
example-usage:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
nextflow_version:
|
|
- "21.10.3"
|
|
- "22.04"
|
|
- "22.03.1-edge"
|
|
- "latest"
|
|
- "latest-stable"
|
|
- "latest-edge"
|
|
- "latest-everything"
|
|
all_distribution:
|
|
- true
|
|
- false
|
|
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
|
|
with:
|
|
node-version: 20
|
|
cache: "npm"
|
|
- run: npm ci
|
|
- run: npm run build
|
|
- run: npm run package
|
|
- uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4
|
|
if: ${{ env.ACT }}
|
|
with:
|
|
java-version: 11
|
|
distribution: zulu
|
|
- uses: ./
|
|
with:
|
|
version: ${{ matrix.nextflow_version }}
|
|
all: ${{ matrix.all_distribution }}
|
|
- run: nextflow -v
|
|
|
|
example-maximized-build-space:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: easimon/maximize-build-space@fc881a613ad2a34aca9c9624518214ebc21dfc0c # v10
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
|
|
with:
|
|
node-version: 20
|
|
cache: "npm"
|
|
- run: npm ci
|
|
- run: npm run build
|
|
- run: npm run package
|
|
- uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4
|
|
if: ${{ env.ACT}}
|
|
with:
|
|
java-version: 11
|
|
distribution: zulu
|
|
- uses: ./
|
|
- run: nextflow -v
|