Skip to content

Commit 7db3ee8

Browse files
committed
Bump Nextflow 26.04.3
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
1 parent 5940306 commit 7db3ee8

2 files changed

Lines changed: 14 additions & 10 deletions

File tree

build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ java {
2222

2323
compileJava {
2424
options.release.set(17)
25-
options.compilerArgs << '-parameters'
25+
options.compilerArgs << '-parameters'
2626
}
2727

2828
test {
@@ -34,7 +34,7 @@ configurations {
3434
}
3535

3636
dependencies {
37-
implementation 'io.nextflow:nf-lang:26.04.0'
37+
implementation 'io.nextflow:nf-lang:26.04.3'
3838
implementation 'org.apache.groovy:groovy:4.0.31'
3939
implementation 'org.apache.groovy:groovy-json:4.0.31'
4040
implementation 'org.apache.groovy:groovy-yaml:4.0.31'
@@ -46,14 +46,14 @@ dependencies {
4646
runtimeOnly 'org.yaml:snakeyaml:2.2'
4747

4848
// include Nextflow runtime at build-time to extract language definitions
49-
nextflowRuntime 'io.nextflow:nextflow:26.04.0'
50-
nextflowRuntime 'io.nextflow:nf-amazon:3.9.0'
51-
nextflowRuntime 'io.nextflow:nf-azure:1.22.2'
52-
nextflowRuntime 'io.nextflow:nf-google:1.27.2'
53-
nextflowRuntime 'io.nextflow:nf-k8s:1.5.2'
54-
nextflowRuntime 'io.nextflow:nf-seqera:0.19.0'
55-
nextflowRuntime 'io.nextflow:nf-tower:1.27.0'
56-
nextflowRuntime 'io.nextflow:nf-wave:1.20.0'
49+
nextflowRuntime 'io.nextflow:nextflow:26.04.3'
50+
nextflowRuntime 'io.nextflow:nf-amazon:3.9.1'
51+
nextflowRuntime 'io.nextflow:nf-azure:1.22.5'
52+
nextflowRuntime 'io.nextflow:nf-google:1.27.3'
53+
nextflowRuntime 'io.nextflow:nf-k8s:1.5.4'
54+
nextflowRuntime 'io.nextflow:nf-seqera:0.20.1'
55+
nextflowRuntime 'io.nextflow:nf-tower:1.28.0'
56+
nextflowRuntime 'io.nextflow:nf-wave:1.21.0'
5757

5858
testImplementation ('org.objenesis:objenesis:3.4')
5959
testImplementation ('net.bytebuddy:byte-buddy:1.14.17')

src/test/groovy/nextflow/script/types/TypeCheckingTest.groovy

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,10 @@ class TypeCheckingTest extends Specification {
116116
params {
117117
input: String = 3.14
118118
}
119+
120+
workflow {
121+
params
122+
}
119123
'''
120124
)
121125
then:

0 commit comments

Comments
 (0)