Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update industrial ci to use jazzy and ubuntu-24.04 #64

Merged
merged 3 commits into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/industrial_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
env:
- ROS_REPO: ros
BUILDER: colcon
ROS_DISTRO: humble
ROS_DISTRO: jazzy
env:
CCACHE_DIR: /github/home/.ccache # Directory for ccache (and how we enable ccache in industrial_ci)
EVENT_NAME: ${{ github.event_name }}
Expand All @@ -45,7 +45,7 @@ jobs:
PR_NUMBER: ${{ github.event.number }}
ANALYZER_TOKEN: ${{ secrets.ANALYZER_TOKEN }}
DEBUG_BASH: true
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
with:
Expand Down
6 changes: 2 additions & 4 deletions kuka_agilus_support/test/test_kr_agilus.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,5 @@ def generate_test_description(test_file):

class TestModels(unittest.TestCase):
def test_read_stdout(self, proc_output):
# Check for frames defined by ROS-Industrial
proc_output.assertWaitFor("got segment base", timeout=5)
proc_output.assertWaitFor("got segment flange", timeout=5)
proc_output.assertWaitFor("got segment tool0", timeout=5)
# Check for robot initialization
proc_output.assertWaitFor("Robot initialized", timeout=5)
6 changes: 2 additions & 4 deletions kuka_cybertech_support/test/test_kr_cybertech.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,5 @@ def generate_test_description(test_file):

class TestModels(unittest.TestCase):
def test_read_stdout(self, proc_output):
# Check for frames defined by ROS-Industrial
proc_output.assertWaitFor("got segment base", timeout=5)
proc_output.assertWaitFor("got segment flange", timeout=5)
proc_output.assertWaitFor("got segment tool0", timeout=5)
# Check for robot initialization
proc_output.assertWaitFor("Robot initialized", timeout=5)
6 changes: 2 additions & 4 deletions kuka_fortec_support/test/test_kr_fortec.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,5 @@ def generate_test_description(test_file):

class TestModels(unittest.TestCase):
def test_read_stdout(self, proc_output):
# Check for frames defined by ROS-Industrial
proc_output.assertWaitFor("got segment base", timeout=5)
proc_output.assertWaitFor("got segment flange", timeout=5)
proc_output.assertWaitFor("got segment tool0", timeout=5)
# Check for robot initialization
proc_output.assertWaitFor("Robot initialized", timeout=5)
6 changes: 2 additions & 4 deletions kuka_iontec_support/test/test_kr_iontec.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,5 @@ def generate_test_description(test_file):

class TestModels(unittest.TestCase):
def test_read_stdout(self, proc_output):
# Check for frames defined by ROS-Industrial
proc_output.assertWaitFor("got segment base", timeout=5)
proc_output.assertWaitFor("got segment flange", timeout=5)
proc_output.assertWaitFor("got segment tool0", timeout=5)
# Check for robot initialization
proc_output.assertWaitFor("Robot initialized", timeout=5)
6 changes: 2 additions & 4 deletions kuka_lbr_iisy_support/test/test_lbr_iisy.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,5 @@ def generate_test_description(test_file):

class TestModels(unittest.TestCase):
def test_read_stdout(self, proc_output):
# Check for frames defined by ROS-Industrial
proc_output.assertWaitFor("got segment base", timeout=5)
proc_output.assertWaitFor("got segment flange", timeout=5)
proc_output.assertWaitFor("got segment tool0", timeout=5)
# Check for robot initialization
proc_output.assertWaitFor("Robot initialized", timeout=5)
6 changes: 2 additions & 4 deletions kuka_lbr_iiwa_support/test/test_lbr_iiwa.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,5 @@ def generate_test_description(test_file):

class TestModels(unittest.TestCase):
def test_read_stdout(self, proc_output):
# Check for frames defined by ROS-Industrial
proc_output.assertWaitFor("got segment base", timeout=5)
proc_output.assertWaitFor("got segment flange", timeout=5)
proc_output.assertWaitFor("got segment tool0", timeout=5)
# Check for robot initialization
proc_output.assertWaitFor("Robot initialized", timeout=5)
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ static constexpr size_t POSITION_INTERFACE_INDEX = 0;
static constexpr size_t VELOCITY_INTERFACE_INDEX = 1;
static constexpr size_t ACCELERATION_INTERFACE_INDEX = 2;

class HARDWARE_INTERFACE_PUBLIC KukaMockHardwareInterface
: public hardware_interface::SystemInterface
class KukaMockHardwareInterface : public hardware_interface::SystemInterface
{
public:
CallbackReturn on_init(const hardware_interface::HardwareInfo & info) override;
Expand Down
6 changes: 2 additions & 4 deletions kuka_quantec_support/test/test_kr_quantec.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,5 @@ def generate_test_description(test_file):

class TestModels(unittest.TestCase):
def test_read_stdout(self, proc_output):
# Check for frames defined by ROS-Industrial
proc_output.assertWaitFor("got segment base", timeout=5)
proc_output.assertWaitFor("got segment flange", timeout=5)
proc_output.assertWaitFor("got segment tool0", timeout=5)
# Check for robot initialization
proc_output.assertWaitFor("Robot initialized", timeout=5)
Loading