-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpixi.toml
26 lines (23 loc) · 1 KB
/
pixi.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[project]
name = "icub-tests"
version = "0.0.0"
description = "Set of tests to check the functionalities of a robot"
authors = ["Martina Gloria <[email protected]>"]
channels = ["conda-forge", "robotology"]
platforms = ["linux-64", "win-64", "osx-64"]
[activation]
scripts = ["set_path.sh"]
[tasks]
build_imu_test = {cmd = "cmake -DCMAKE_INSTALL_PREFIX=$CMAKE_INSTALL_PREFIX -S. -B.build -DICUB_TESTS_COMPILES_IMU_TEST=ON"}
compile_imu_test = {cmd = "cmake --build .build", depends_on = ["build_imu_test"]}
install_imu_test = {cmd = "cmake --install .build", depends_on = ["compile_imu_test"]}
imu_sim_test = {cmd = "robottestingframework-testrunner --verbose --suite suites/imu-icubGazeboSim.xml", depends_on = ["install_imu_test"]}
imu_test = {cmd = "robottestingframework-testrunner --verbose --suite suites/imu.xml", depends_on = ["install_imu_test"]}
[dependencies]
robometry = "*"
idyntree = "*"
yarp = "*"
robot-testing-framework = "*"
icub-main = "*"
icub-models = "*"
robotology-distro = ">=2024.2.0,<2024.3"