diff --git a/devops-stages/stage-build.sh b/devops-stages/stage-build.sh
index 00b5ae90e600dd9805cc0070a53654af1e331ff8..b8ce5b5fdc6336f47ff613f81ef8082bd286731c 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 0000000000000000000000000000000000000000..800351e8336b91a1bb18e192ac5c5375bdc59777
--- /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.