Files
openpipeline_qc/src/configs/integration_tests.config
CI f45b3c0cea Build branch openpipeline_qc/v0.1.0 with version v0.1.0 to openpipeline_qc on branch v0.1 (4de00a2)
Build pipeline: test-vsh-ci-build-template-8gzht

Source commit: 4de00a2614

Source message: release v0.1
2025-09-23 06:56:43 +00:00

36 lines
731 B
Plaintext

profiles {
// detect tempdir
tempDir = java.nio.file.Paths.get(
System.getenv('NXF_TEMP') ?:
System.getenv('VIASH_TEMP') ?:
System.getenv('TEMPDIR') ?:
System.getenv('TMPDIR') ?:
'/tmp'
).toAbsolutePath()
mount_temp {
docker.temp = tempDir
podman.temp = tempDir
charliecloud.temp = tempDir
}
no_publish {
process {
withName: '.*' {
publishDir = [
enabled: false
]
}
}
}
docker {
docker.enabled = true
// docker.userEmulation = true
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
}
}