File tree Expand file tree Collapse file tree 6 files changed +41
-15
lines changed
plansys2_simple_example/pddl Expand file tree Collapse file tree 6 files changed +41
-15
lines changed Original file line number Diff line number Diff line change @@ -20,17 +20,17 @@ jobs:
2020 steps :
2121 - name : Install popf deps
2222 run : sudo apt-get install libfl-dev
23- - uses : actions/checkout@v2
23+ - uses : actions/checkout@v4.2.2
2424 - name : Setup ROS 2
25- uses : ros-tooling/setup-ros@0.7.5
25+ uses : ros-tooling/setup-ros@0.7.13
2626 with :
2727 required-ros-distributions : rolling
2828 - name : Install BT.CPP v4 and test_msgs (provisional Fix)
2929 run : sudo apt-get install ros-rolling-behaviortree-cpp ros-rolling-test-msgs ros-rolling-geographic-msgs
3030 - name : Rosdep update
3131 run : rosdep update
3232 - name : build and test
33- uses : ros-tooling/action-ros-ci@0.3.13
33+ uses : ros-tooling/action-ros-ci@0.4.3
3434 with :
3535 package-name : plansys2_bt_example
3636 target-ros2-distro : rolling
Original file line number Diff line number Diff line change @@ -20,15 +20,15 @@ jobs:
2020 steps :
2121 - name : Install popf deps
2222 run : sudo apt-get install libfl-dev
23- - uses : actions/checkout@v2
23+ - uses : actions/checkout@v4.2.2
2424 - name : Setup ROS 2
25- uses : ros-tooling/setup-ros@0.7.5
25+ uses : ros-tooling/setup-ros@0.7.13
2626 with :
2727 required-ros-distributions : rolling
2828 - name : Install BT.CPP v4 and test_msgs (provisional Fix)
2929 run : sudo apt-get install ros-rolling-behaviortree-cpp ros-rolling-test-msgs
3030 - name : build and test
31- uses : ros-tooling/action-ros-ci@0.3.13
31+ uses : ros-tooling/action-ros-ci@0.4.3
3232 with :
3333 package-name : plansys2_cascade_example
3434 target-ros2-distro : rolling
Original file line number Diff line number Diff line change @@ -20,15 +20,15 @@ jobs:
2020 steps :
2121 - name : Install popf deps
2222 run : sudo apt-get install libfl-dev
23- - uses : actions/checkout@v2
23+ - uses : actions/checkout@v4.2.2
2424 - name : Setup ROS 2
25- uses : ros-tooling/setup-ros@0.7.5
25+ uses : ros-tooling/setup-ros@0.7.13
2626 with :
2727 required-ros-distributions : rolling
2828 - name : Install BT.CPP v4 and test_msgs (provisional Fix)
2929 run : sudo apt-get install ros-rolling-behaviortree-cpp ros-rolling-test-msgs
3030 - name : build and test
31- uses : ros-tooling/action-ros-ci@0.3.13
31+ uses : ros-tooling/action-ros-ci@0.4.3
3232 with :
3333 package-name : plansys2_multidomain_example
3434 target-ros2-distro : rolling
Original file line number Diff line number Diff line change @@ -20,17 +20,17 @@ jobs:
2020 steps :
2121 - name : Install popf deps
2222 run : sudo apt-get install libfl-dev
23- - uses : actions/checkout@v2
23+ - uses : actions/checkout@v4.2.2
2424 - name : Setup ROS 2
25- uses : ros-tooling/setup-ros@0.7.5
25+ uses : ros-tooling/setup-ros@0.7.13
2626 with :
2727 required-ros-distributions : rolling
2828 - name : Install BT.CPP v4 and test_msgs (provisional Fix)
2929 run : sudo apt-get install ros-rolling-behaviortree-cpp ros-rolling-test-msgs ros-rolling-geographic-msgs
3030 - name : Rosdep update
3131 run : rosdep update
3232 - name : build and test
33- uses : ros-tooling/action-ros-ci@0.3.13
33+ uses : ros-tooling/action-ros-ci@0.4.3
3434 with :
3535 package-name : plansys2_patrol_navigation_example
3636 target-ros2-distro : rolling
Original file line number Diff line number Diff line change @@ -20,15 +20,15 @@ jobs:
2020 steps :
2121 - name : Install popf deps
2222 run : sudo apt-get install libfl-dev
23- - uses : actions/checkout@v2
23+ - uses : actions/checkout@v4.2.2
2424 - name : Setup ROS 2
25- uses : ros-tooling/setup-ros@0.7.5
25+ uses : ros-tooling/setup-ros@0.7.13
2626 with :
2727 required-ros-distributions : rolling
2828 - name : Install BT.CPP v4 and test_msgs (provisional Fix)
2929 run : sudo apt-get install ros-rolling-behaviortree-cpp ros-rolling-test-msgs
3030 - name : build and test
31- uses : ros-tooling/action-ros-ci@0.3.13
31+ uses : ros-tooling/action-ros-ci@0.4.3
3232 with :
3333 package-name : plansys2_simple_example
3434 target-ros2-distro : rolling
Original file line number Diff line number Diff line change 1+ ( define ( problem problem_1 )
2+ ( :domain simple )
3+ ( :objects
4+ robot1 - robot
5+ bedroom kitchen bathroom sitting_room corridor - room
6+ )
7+ ( :init
8+ ( robot_at robot1 corridor )
9+
10+ ( connected sitting_room corridor )
11+ ( connected corridor sitting_room )
12+ ( connected bedroom corridor )
13+ ( connected corridor bedroom )
14+ ( connected bedroom bathroom )
15+ ( connected bathroom bedroom )
16+ ( connected sitting_room kitchen )
17+ ( connected kitchen sitting_room )
18+
19+ ( charging_point_at corridor)
20+ ( battery_low robot1)
21+ )
22+ ( :goal
23+ ( and
24+ ( robot_at robot1 kitchen )
25+ ))
26+ )
You can’t perform that action at this time.
0 commit comments