Skip to content

Commit ae66b67

Browse files
committed
Update CI
Signed-off-by: Francisco Martín Rico <[email protected]>
1 parent 5c66f60 commit ae66b67

File tree

6 files changed

+41
-15
lines changed

6 files changed

+41
-15
lines changed

.github/workflows/plansys2_bt_example.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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/[email protected].5
25+
uses: ros-tooling/[email protected].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

.github/workflows/plansys2_cascade_example.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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/[email protected].5
25+
uses: ros-tooling/[email protected].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

.github/workflows/plansys2_multidomain_example.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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/[email protected].5
25+
uses: ros-tooling/[email protected].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

.github/workflows/plansys2_patrol_navigation_example.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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/[email protected].5
25+
uses: ros-tooling/[email protected].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

.github/workflows/plansys2_simple_example.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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/[email protected].5
25+
uses: ros-tooling/[email protected].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
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
)

0 commit comments

Comments
 (0)