fix: latest OS and fixes
Some checks failed
ZeroDownTime/CloudBender/pipeline/head There was a failure building this commit
Some checks failed
ZeroDownTime/CloudBender/pipeline/head There was a failure building this commit
This commit is contained in:
parent
77918aa80d
commit
be403efa43
@ -1,8 +1,8 @@
|
|||||||
ARG RUNTIME_VERSION="3.11"
|
ARG RUNTIME_VERSION="3.12"
|
||||||
ARG DISTRO_VERSION="3.19"
|
ARG DISTRO_VERSION="3.20"
|
||||||
|
|
||||||
FROM python:${RUNTIME_VERSION}-alpine${DISTRO_VERSION} AS builder
|
FROM python:${RUNTIME_VERSION}-alpine${DISTRO_VERSION} AS builder
|
||||||
ARG RUNTIME_VERSION="3.11"
|
ARG RUNTIME_VERSION="3.12"
|
||||||
|
|
||||||
RUN apk add --no-cache \
|
RUN apk add --no-cache \
|
||||||
autoconf \
|
autoconf \
|
||||||
|
@ -447,10 +447,10 @@ def _provision(cb, stacks):
|
|||||||
# Pulumi is still not thread safe
|
# Pulumi is still not thread safe
|
||||||
if _anyPulumi(step):
|
if _anyPulumi(step):
|
||||||
_threads = 1
|
_threads = 1
|
||||||
else
|
else:
|
||||||
_threads = len(step)
|
_threads = len(step)
|
||||||
|
|
||||||
with ThreadPoolExecutor(max_workers=_threads)) as group:
|
with ThreadPoolExecutor(max_workers=_threads) as group:
|
||||||
futures = []
|
futures = []
|
||||||
for stack in step:
|
for stack in step:
|
||||||
if stack.mode != "pulumi":
|
if stack.mode != "pulumi":
|
||||||
|
@ -1066,7 +1066,7 @@ class Stack(object):
|
|||||||
if '.' in key:
|
if '.' in key:
|
||||||
try:
|
try:
|
||||||
(root, leaf) = key.split('.')
|
(root, leaf) = key.split('.')
|
||||||
except ValueError as e:
|
except ValueError:
|
||||||
raise ParameterIllegalValue(
|
raise ParameterIllegalValue(
|
||||||
"Currently only one level hierachies within parameters are supported!"
|
"Currently only one level hierachies within parameters are supported!"
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user