Skip to content

Commit 248da6b

Browse files
committed
Remove model download from pipeline
1 parent e7512c0 commit 248da6b

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.github/workflows/py.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,6 @@ jobs:
4646
run: python -m pip install -r requirements_dev.txt
4747
- name: Install wheel
4848
run: python -m pip install wheel
49-
- name: Download the models using cmake
50-
env:
51-
MODEL_TOKEN: ${{ secrets.MODEL_TOKEN }}
52-
run: cmake -G Ninja -B build -DINCLUDE_UTN_MODELS=ON -DGITLAB_MODELS_TOKEN="$MODEL_TOKEN" -DMUJOCO_VERSION=3.1.5
5349
- name: Install the package
5450
run: python -m pip install --no-build-isolation .
5551
- name: Code linting

python/examples/env_cartesian_control.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from rcs._core.common import RobotPlatform
44
from rcs.control.fr3_desk import FCI, ContextManager, Desk, load_creds_fr3_desk
55
from rcs.envs.base import ControlMode, RelativeTo
6-
from rcs.envs.creators import RCSFR3EnvCreator, FR3SimEnvCreator
6+
from rcs.envs.creators import FR3SimEnvCreator, RCSFR3EnvCreator
77
from rcs.envs.utils import (
88
default_fr3_hw_gripper_cfg,
99
default_fr3_hw_robot_cfg,

python/examples/env_joint_control.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from rcs._core.common import RobotPlatform
55
from rcs.control.fr3_desk import FCI, ContextManager, Desk, load_creds_fr3_desk
66
from rcs.envs.base import ControlMode, RelativeTo
7-
from rcs.envs.creators import RCSFR3EnvCreator, FR3SimEnvCreator
7+
from rcs.envs.creators import FR3SimEnvCreator, RCSFR3EnvCreator
88
from rcs.envs.utils import (
99
default_fr3_hw_gripper_cfg,
1010
default_fr3_hw_robot_cfg,

0 commit comments

Comments
 (0)