File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,6 @@ profiles {
168168 }
169169 docker {
170170 docker. enabled = true
171- docker. registry = ' quay.io'
172171 docker. userEmulation = true
173172 conda. enabled = false
174173 singularity. enabled = false
@@ -192,7 +191,6 @@ profiles {
192191 }
193192 podman {
194193 podman. enabled = true
195- podman. registry = ' quay.io'
196194 conda. enabled = false
197195 docker. enabled = false
198196 singularity. enabled = false
@@ -263,6 +261,15 @@ env {
263261 JULIA_DEPOT_PATH = " /usr/local/share/julia"
264262}
265263
264+ // Capture exit codes from upstream processes when piping
265+ process. shell = [' /bin/bash' , ' -euo' , ' pipefail' ]
266+
267+ // Set default registry for Docker and Podman independent of -profile
268+ // Will not be used unless Docker / Podman are enabled
269+ // Set to your registry if you have a mirror of containers
270+ docker. registry = ' quay.io'
271+ podman. registry = ' quay.io'
272+
266273def trace_timestamp = new java.util.Date (). format( ' yyyy-MM-dd_HH-mm-ss' )
267274timeline {
268275 enabled = true
You can’t perform that action at this time.
0 commit comments