From beb338bf1947d5a29a37277b5a652350a5c83838 Mon Sep 17 00:00:00 2001 From: Edmund Miller Date: Tue, 17 Oct 2023 14:25:56 +0200 Subject: [PATCH] build: Set strategy to dockerfile, conda then container --- tests/config/nextflow.config | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/config/nextflow.config b/tests/config/nextflow.config index b1b4638eaa02..001e8ced94a1 100644 --- a/tests/config/nextflow.config +++ b/tests/config/nextflow.config @@ -15,6 +15,7 @@ if ("$PROFILE" == "singularity") { singularity.enabled = true singularity.autoMounts = true wave.enabled = true + wave.strategy = ['dockerfile', 'conda', 'container'] } else if ("$PROFILE" == "conda") { conda.enabled = true } else if ("$PROFILE" == "mamba") { @@ -30,6 +31,7 @@ if ("$PROFILE" == "singularity") { docker.fixOwnership = true docker.runOptions = "--platform linux/x86_64" wave.enabled = true + wave.strategy = ['dockerfile', 'conda', 'container'] } docker.registry = 'quay.io'