From: garciadeblas Date: Tue, 4 Apr 2023 14:56:52 +0000 (+0200) Subject: Update stage-build to run tox sequentially X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=45cb01768d4b1c77a6311b45c48c7bf2abc32d5b;p=osm%2FRO.git Update stage-build to run tox sequentially Change-Id: I6ea1222199734c76cefb72db3ae3dec0c18626dc Signed-off-by: garciadeblas --- diff --git a/devops-stages/stage-build.sh b/devops-stages/stage-build.sh index 00b5ae90..b8ce5b5f 100755 --- a/devops-stages/stage-build.sh +++ b/devops-stages/stage-build.sh @@ -36,9 +36,8 @@ dist_ro_vim_openvim dist_ro_vim_vmware" TOX_ENV_LIST="$(echo $PACKAGES | sed "s/ /,/g")" -PROCESSES=$(expr `nproc --a` / 2) -TOX_PARALLEL_NO_SPINNER=1 tox -e $TOX_ENV_LIST --parallel $PROCESSES +tox -e $TOX_ENV_LIST # Copying packages # RO plugin diff --git a/releasenotes/notes/update_stage_build-794396b7a240798d.yaml b/releasenotes/notes/update_stage_build-794396b7a240798d.yaml new file mode 100644 index 00000000..800351e8 --- /dev/null +++ b/releasenotes/notes/update_stage_build-794396b7a240798d.yaml @@ -0,0 +1,20 @@ +####################################################################################### +# Copyright ETSI Contributors and Others. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or +# implied. +# See the License for the specific language governing permissions and +# limitations under the License. +####################################################################################### +--- +other: + - | + Update stage-build to run tox sequentially.