Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion scripts/deploy/tasks/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ def _build(self, connections: Group) -> GroupResult:
:return: The results of the task.
"""
print_debug("Building packages")
cmd = f"cd {self._remote_workspace} && pixi run --environment robot build {self._package}"

cmd = f"cd {self._remote_workspace} && chrt -r 1 taskset -c 0-9 pixi run --environment robot build {self._package}"

print_debug(f"Calling '{cmd}'")
try:
Expand Down
2 changes: 1 addition & 1 deletion src/bitbots_misc/bitbots_bringup/launch/teamplayer.launch
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<arg name="world_model" default="true" description="Whether the world model should be started"/>
<arg name="monitoring" default="true" description="Whether the system monitor and udp bridge should be started" />
<arg name="record" default="false" description="Whether the ros bag recording should be started" />
<arg name="tts" default="true" description="Whether to speak" />
<arg name="tts" default="false" description="Whether to speak" />
<arg name="whistle_detector" default="true" description="Whether to detect whistles"/>
<arg unless="$(var sim)" name="fieldname" default="german_open_2026" description="Loads field settings (labor, webots, ...)." />
<arg if="$(var sim)" name="fieldname" default="webots" description="Loads field settings (labor, webots, ...)." />
Expand Down
Loading