Skip to content

Commit 955bd34

Browse files
committed
ci: fix leftover
- removed non existing zed extension - cmake policy: allow cmake version smaller than 3.5 - update main.cpp - fix cppsrc path in makefile of panda - removed clang tidy
1 parent 7dc2a2b commit 955bd34

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/extensions.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
# - rcs_robotiq
1515
- rcs_tacto
1616
- rcs_usb_cam
17-
- rcs_zed
1817
runs-on: ubuntu-latest
1918
steps:
2019
- uses: actions/checkout@v4
@@ -74,8 +73,8 @@ jobs:
7473
pip install -r requirements.txt
7574
- name: Check clang format
7675
run: make -C extensions/${{ matrix.extension }} cppcheckformat
77-
- name: Clang Tidy
78-
run: make -C extensions/${{ matrix.extension }} cpplint
76+
# - name: Clang Tidy
77+
# run: make -C extensions/${{ matrix.extension }} cpplint
7978
- name: Clang build
8079
run: make -C extensions/${{ matrix.extension }} clangcompile PYTHON_EXECUTABLE=${{ steps.setup-python.outputs.python-path }}
8180

extensions/rcs_fr3/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
2525
set(CMAKE_CXX_STANDARD 20)
2626
set(CMAKE_CXX_STANDARD_REQUIRED ON)
2727
set(CMAKE_CXX_EXTENSIONS OFF)
28+
set(CMAKE_POLICY_VERSION_MINIMUM 3.5)
2829

2930
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
3031

extensions/rcs_fr3/src/hw/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
using namespace std;
1414

1515
const string ip = "192.168.101.1";
16-
const string urdf_path = "models/urdf/fr3.urdf";
16+
const string mjcf_path = "assets/fr3/mjcf/fr3_0.xml";
1717

1818
int main() {
1919
try {
20-
auto ik = make_shared<rcs::common::RL>(urdf_path);
20+
auto ik = make_shared<rcs::common::Pin>(mjcf_path, "attachment_site_0", false);
2121
rcs::hw::Franka robot(ip, ik);
2222
robot.automatic_error_recovery();
2323
std::cout << "WARNING: This example will move the robot! "

extensions/rcs_panda/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PYSRC = src/rcs_panda
2-
CPPSRC = src
2+
CPPSRC = src_fr3
33
COMPILE_MODE = Release
44

55
# CPP

0 commit comments

Comments
 (0)