-
Notifications
You must be signed in to change notification settings - Fork 33
51 lines (43 loc) · 1.08 KB
/
nextflow.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Nextflow Test
on:
push:
pull_request:
jobs:
build:
uses: ./.github/workflows/build.yml
nextflow:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download Funnel
uses: actions/download-artifact@v4
with:
name: funnel
- name: Start Funnel
run: |
chmod +x ./funnel
./funnel server --LocalStorage.AllowedDirs $HOME run &
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Install Nextflow
run: |
git clone https://github.com/nextflow-io/nextflow
cd nextflow
make compile
- name: Install nf-canary and GA4GH-TES plugin
run: |
git clone https://github.com/seqeralabs/nf-canary
cd nf-canary
cat <<EOF >> nextflow.config
plugins {
id 'nf-ga4gh'
}
process.executor = 'tes'
tes.endpoint = 'http://localhost:8000'
EOF
- name: Run nf-canary tests
run: |
./nextflow/nextflow run nf-canary/main.nf